Connecting to database specified by database.yml  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction Connecting to database specified by database.yml  (0.2ms) select sqlite_version(*)  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (3.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to DeviseCreateUsers (20121106220325)  (0.0ms) begin transaction  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121106220325')  (1.3ms) commit transaction Migrating to CreateAlmanacPosts (20121114185255)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "almanac_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "published" boolean DEFAULT 'f', "blog_id" integer, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185255')  (0.6ms) commit transaction Migrating to CreateAlmanacBlogs (20121114185256)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "almanac_blogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185256')  (0.6ms) commit transaction Migrating to AddExcerptToAlmanacPosts (20121114185257)  (0.0ms) begin transaction  (0.7ms) ALTER TABLE "almanac_posts" ADD "excerpt" text  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185257')  (0.5ms) commit transaction Migrating to CreateAlmanacFiles (20121114185258)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "almanac_files" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_uid" varchar(255), "thumb_uid" varchar(255), "post_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185258')  (0.6ms) commit transaction Migrating to RenameFileToImage (20121114185259)  (0.0ms) begin transaction  (0.4ms) ALTER TABLE "almanac_files" RENAME TO "almanac_images"  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185259')  (0.6ms) commit transaction Migrating to AddImageFieldsToAlmanacBlogs (20121114185260)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "almanac_blogs" ADD "background_uid" varchar(255)  (0.1ms) ALTER TABLE "almanac_blogs" ADD "logo_uid" varchar(255)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185260')  (0.8ms) commit transaction Migrating to AddNewFieldsToBlogs (20121114185261)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "almanac_blogs" ADD "description" text  (0.1ms) ALTER TABLE "almanac_blogs" ADD "twitter" varchar(255)  (0.1ms) ALTER TABLE "almanac_blogs" ADD "google_analytics" varchar(255)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185261')  (0.7ms) commit transaction Migrating to ActsAsTaggableOnMigration (20121114185262)  (0.1ms) 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(128), "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 ('20121114185262')  (0.7ms) commit transaction Migrating to CreateAlmanacComments (20121114185263)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "almanac_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "author_email" varchar(255), "author_name" varchar(255), "post_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185263')  (1.1ms) commit transaction Migrating to AddRakismetFieldsToBlogs (20121114185264)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "almanac_blogs" ADD "rakismet_key" varchar(255)  (0.1ms) ALTER TABLE "almanac_blogs" ADD "rakismet_url" varchar(255)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185264')  (0.6ms) commit transaction Migrating to AddSpamToComments (20121114185265)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "almanac_comments" ADD "spam" boolean DEFAULT 'f'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185265')  (0.9ms) commit transaction Migrating to AddWrittenAtToPosts (20121114185266)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "almanac_posts" ADD "written_at" date  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185266')  (0.8ms) commit transaction Migrating to AddBackgroundFieldsToBlogs (20121114185267)  (0.1ms) begin transaction  (0.5ms) ALTER TABLE "almanac_blogs" ADD "background_tile" boolean DEFAULT 'f'  (0.3ms) ALTER TABLE "almanac_blogs" ADD "background_blur" integer DEFAULT 0  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185267')  (0.7ms) commit transaction Migrating to AddFooterToAlmanacBlogs (20121114185268)  (0.0ms) begin transaction  (0.4ms) ALTER TABLE "almanac_blogs" ADD "footer" text  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185268')  (1.0ms) commit transaction Migrating to ChangeDefaultValueForBackgroundTilesInAlmanacBlogs (20121114185269)  (0.0ms) begin transaction  (0.4ms) CREATE TEMPORARY TABLE "altered_almanac_blogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "background_uid" varchar(255), "logo_uid" varchar(255), "description" text, "twitter" varchar(255), "google_analytics" varchar(255), "rakismet_key" varchar(255), "rakismet_url" varchar(255), "background_tile" boolean DEFAULT 'f', "background_blur" integer DEFAULT 0, "footer" text)  (0.1ms) SELECT * FROM "almanac_blogs"  (1.1ms) DROP TABLE "almanac_blogs"  (0.2ms) CREATE TABLE "almanac_blogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "background_uid" varchar(255), "logo_uid" varchar(255), "description" text, "twitter" varchar(255), "google_analytics" varchar(255), "rakismet_key" varchar(255), "rakismet_url" varchar(255), "background_tile" boolean DEFAULT 't', "background_blur" integer DEFAULT 0, "footer" text)   (0.1ms) SELECT * FROM "altered_almanac_blogs"  (0.2ms) DROP TABLE "altered_almanac_blogs"  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121114185269')  (1.4ms) commit transaction Migrating to AddSlugToAlmanacPosts (20121116192008)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "almanac_posts" ADD "slug" varchar(255)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121116192008')  (0.8ms) commit transaction Migrating to AddIndexToAlmanacPostsOnSlug (20121116195111)  (0.0ms) begin transaction  (0.4ms) CREATE UNIQUE INDEX "index_almanac_posts_on_slug" ON "almanac_posts" ("slug")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121116195111')  (1.1ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Connecting to database specified by database.yml  (1.3ms) DELETE FROM "users";  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';  (0.8ms) DELETE FROM "almanac_posts";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_posts';  (0.8ms) DELETE FROM "almanac_images";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_images';  (1.1ms) DELETE FROM "tags";  (0.1ms) DELETE FROM sqlite_sequence where name = 'tags';  (0.7ms) DELETE FROM "taggings";  (0.1ms) DELETE FROM sqlite_sequence where name = 'taggings';  (0.9ms) DELETE FROM "almanac_comments";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_comments';  (0.7ms) DELETE FROM "almanac_blogs";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_blogs';  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (1.6ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'gladys_witting@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:54 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "gladys_witting@example.com"], ["encrypted_password", "$2a$04$xKxjO.5tDZyzjPoN1lYBOOjZfl55f2hoQID///Xmi5DVWjkU936Sm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs" Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Rerum inventore dolores alias.", "description"=>"Molestiae consequuntur inventore. Ipsa magni qui esse sed et. Dolorem exercitationem illo ipsum quia eum minus. Magni consectetur sequi.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:54 UTC +00:00], ["description", "Molestiae consequuntur inventore. Ipsa magni qui esse sed et. Dolorem exercitationem illo ipsum quia eum minus. Magni consectetur sequi."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Rerum inventore dolores alias."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 23ms (ActiveRecord: 1.0ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'milo@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:54 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "milo@example.org"], ["encrypted_password", "$2a$04$P9ETrP.jbKeUxaEkUA/nheoXOHmQNwRwiZBEeawKG0ROsT34.wQby"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Quod harum.", "description"=>"Nam ea ipsam eos repudiandae. Facere tempore error accusamus qui quam. Doloribus quia dolore.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:54 UTC +00:00], ["description", "Nam ea ipsam eos repudiandae. Facere tempore error accusamus qui quam. Doloribus quia dolore."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quod harum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 7ms (ActiveRecord: 0.9ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'gladys_witting@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:54 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "gladys_witting@example.com"], ["encrypted_password", "$2a$04$.3j/XVZJGstlUApmSrgB1.VQQ.InH/7FsmnG/YN6g1DIAYYA286XW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs" Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Ex assumenda natus eos explicabo. Molestiae consequuntur inventore. Ipsa magni qui esse sed et. Dolorem exercitationem illo ipsum quia eum minus. Magni consectetur sequi.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 22ms (Views: 15.9ms | ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'milo@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:54 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "milo@example.org"], ["encrypted_password", "$2a$04$vw.JuYi3ClA/dl4ok2zOHu.erM4WfO0rsCzmoZ.FXRZAZ1HbqJrwC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Perspiciatis maiores ea culpa aperiam impedit. Nam ea ipsam eos repudiandae. Facere tempore error accusamus qui quam.", "author_id"=>nil}} Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 1.5ms | ActiveRecord: 0.4ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'gladys_witting@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "gladys_witting@example.com"], ["encrypted_password", "$2a$04$l078hMEw5MgxZ0nJFX5Yfe8IDtQgvkULLkkwudaej.T/Km1Bz/mRi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["description", "Molestiae consequuntur inventore. Ipsa magni qui esse sed et. Dolorem exercitationem illo ipsum quia eum minus. Magni consectetur sequi."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Rerum inventore dolores alias."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Testz", "description"=>"Atque nobis esse vel impedit molestiae. Quas ex ipsa aliquam rerum. Aspernatur aperiam provident soluta. Officiis optio dolorem id.", "author_id"=>"2"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Testz', "description" = 'Atque nobis esse vel impedit molestiae. Quas ex ipsa aliquam rerum. Aspernatur aperiam provident soluta. Officiis optio dolorem id.', "author_id" = 2, "updated_at" = '2012-12-28 04:37:55.042878' WHERE "almanac_blogs"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 7ms (ActiveRecord: 0.4ms) Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'madilyn.hoppe@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "madilyn.hoppe@example.org"], ["encrypted_password", "$2a$04$NuLwWUwP1z0pay43ulqcs.jI4BNy9t5P1ZKnF25K.vDNihK6cjj2m"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 3], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["description", "Totam et doloremque reprehenderit. Laudantium consequatur iure iusto repudiandae aut provident est. Est est laborum aspernatur. Tempora possimus consequatur maxime quia."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quaerat minus molestias."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Architecto consequuntur id possimus.", "description"=>"Molestiae excepturi adipisci sequi ipsa consequuntur eveniet enim. Et voluptatem consequatur neque eos. Libero quod voluptatum fugiat quis ratione debitis eos.", "author_id"=>"4"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Architecto consequuntur id possimus.', "description" = 'Molestiae excepturi adipisci sequi ipsa consequuntur eveniet enim. Et voluptatem consequatur neque eos. Libero quod voluptatum fugiat quis ratione debitis eos.', "author_id" = 4, "updated_at" = '2012-12-28 04:37:55.063386' WHERE "almanac_blogs"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 5ms (ActiveRecord: 0.3ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'gladys_witting@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "gladys_witting@example.com"], ["encrypted_password", "$2a$04$WnRmoJkAmFe0eBXp.f0hcez4Pd/.OJWGGvb24CjI3PKCna1IY7MyK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 5], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["description", "Molestiae consequuntur inventore. Ipsa magni qui esse sed et. Dolorem exercitationem illo ipsum quia eum minus. Magni consectetur sequi."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Rerum inventore dolores alias."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Atque nobis esse vel impedit molestiae. Quas ex ipsa aliquam rerum. Aspernatur aperiam provident soluta. Officiis optio dolorem id.", "author_id"=>"6"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 2.3ms | ActiveRecord: 0.2ms) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'madilyn.hoppe@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "madilyn.hoppe@example.org"], ["encrypted_password", "$2a$04$nk0uHiSd1hGfRS.Mnpki7efliVef/KL5qj8Lgg/CUYQwL.P54xNJm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 7], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["description", "Totam et doloremque reprehenderit. Laudantium consequatur iure iusto repudiandae aut provident est. Est est laborum aspernatur. Tempora possimus consequatur maxime quia."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quaerat minus molestias."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Architecto consequuntur id possimus dolores. Nisi quia officia deserunt quis maxime. Placeat qui deserunt corporis ea vitae quaerat. Nostrum nesciunt voluptatem dolorum deleniti atque nam. Veritatis pariatur dolore recusandae.", "author_id"=>"8"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 1.4ms | ActiveRecord: 0.2ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'gladys_witting@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "gladys_witting@example.com"], ["encrypted_password", "$2a$04$wHCp72iJcJ7RlaSx1DQhtuJurMNyBUNQOi1Zl58C9wCgvXD1oMIkG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 9], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["description", "Molestiae consequuntur inventore. Ipsa magni qui esse sed et. Dolorem exercitationem illo ipsum quia eum minus. Magni consectetur sequi."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Rerum inventore dolores alias."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aspernatur-laborum-1' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 10], ["blog_id", 1], ["body", "Fugiat veritatis animi qui. A labore vero. Quia consectetur minus iusto odio quos eos. Expedita similique molestiae tempora et nam. Itaque ea dicta recusandae. Quas eaque reiciendis fuga. Cumque doloremque culpa optio deserunt voluptatum."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["excerpt", "Aliquam hic ullam autem."], ["published", true], ["slug", "aspernatur-laborum-1"], ["title", "Laboriosam autem praesentium labore."], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test1' OR lower(name) = 'rspec1' OR lower(name) = 'ruby1' OR lower(name) = '#rails1') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails1"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "vita_reichel@example.org"], ["author_name", "Richmond Terry"], ["body", "Distinctio delectus at possimus et consequatur. Eaque amet et quo error. Beatae illum voluptate facere accusamus sapiente nostrum."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "amalia@example.org"], ["author_name", "Fredy Collins"], ["body", "Dolores possimus id. Blanditiis earum illo tempora laboriosam."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "kenton@example.org"], ["author_name", "Mr. Whitney Pacocha"], ["body", "Unde aut quam occaecati ad. Necessitatibus cupiditate quia mollitia voluptatem soluta tenetur."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "janae_schneider@example.com"], ["author_name", "Etha Lubowitz"], ["body", "Dignissimos error ea ut veniam voluptates rerum. Dolorem voluptatem est ipsum animi sed. In ut nulla aliquid illum."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "kellie.oconnell@example.org"], ["author_name", "Herman Muller IV"], ["body", "Quibusdam sunt dolorem quaerat. Sunt inventore voluptas vitae ratione qui sint. Earum dolores repudiandae possimus nulla iusto est sapiente."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "dorcas@example.net"], ["author_name", "Celia Hartmann"], ["body", "Odio consequatur qui officiis ea aperiam."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "tiara_greenholt@example.com"], ["author_name", "Jena Hermann"], ["body", "Suscipit recusandae facere voluptatum nemo quis. Qui praesentium voluptatem cum quod consequatur veniam. Ipsam eligendi aperiam."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "evalyn_little@example.org"], ["author_name", "Margarett Schimmel"], ["body", "Voluptatem ea repellendus. Deleniti voluptas id accusantium perspiciatis quod."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "alexis.davis@example.org"], ["author_name", "Anya Olson"], ["body", "Quibusdam sit quam voluptates saepe."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "ernest@example.com"], ["author_name", "Andreanne McClure"], ["body", "Ea doloremque blanditiis molestiae quod non asperiores. Voluptatem voluptas porro saepe beatae. Aut similique aut omnis."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "maria.ankunding@example.org"], ["author_name", "Narciso Schaden"], ["body", "Voluptatum et maxime aut qui sequi. Eius ex dolorum enim eos voluptatem et ullam. Aut qui doloribus vitae officiis nulla veniam placeat."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "ernest@example.com"], ["author_name", "Conrad Cormier"], ["body", "A corporis eum. Et officiis a in commodi veniam. Optio asperiores est et quia magnam et perferendis."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "aglae.rippin@example.com"], ["author_name", "Dr. Leonie Gleason"], ["body", "Deleniti aut est at id id accusamus. Porro minima consequatur aspernatur."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "green_davis@example.org"], ["author_name", "Lempi Padberg"], ["body", "Excepturi molestias dolor sed aut consequuntur. Id aliquid sit temporibus necessitatibus."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "dora.jaskolski@example.net"], ["author_name", "Rosalind Goldner"], ["body", "Eligendi quia blanditiis deleniti minus est."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'general@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "general@example.org"], ["encrypted_password", "$2a$04$Ua0h8GNX6jUWk5dYKFb2sOC97KKshlfKHnXu2jdEdmYc74kYlCzVi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 11], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["description", "Adipisci et et dolorum quod numquam occaecati debitis. Consequatur et id. Consequuntur architecto a."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aut quae non."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'vero-cupiditate-2' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 12], ["blog_id", 1], ["body", "Nemo vel ab. Corrupti ut hic. Enim ad magni quam illum rerum quisquam aspernatur. Reprehenderit ipsum iure aut tempore assumenda eveniet. Nobis quia minus iusto. Officia quidem error quam voluptatum."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["excerpt", "Consequatur voluptas."], ["published", true], ["slug", "vero-cupiditate-2"], ["title", "Eius velit ea voluptas."], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test2' OR lower(name) = 'rspec2' OR lower(name) = 'ruby2' OR lower(name) = '#rails2') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test2"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec2"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby2"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails2"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "grant@example.org"], ["author_name", "Pauline Fritsch"], ["body", "Ratione odit hic et. Adipisci at et enim maxime. Ipsum qui minima neque."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "woodrow.mosciski@example.org"], ["author_name", "Elinore Barton DVM"], ["body", "Quo animi quos odio cupiditate suscipit. Accusantium veniam expedita provident cupiditate quia consequatur. Et blanditiis suscipit eligendi."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "jonas.bernier@example.org"], ["author_name", "Deondre King"], ["body", "Voluptates eum explicabo cum. Voluptas asperiores iure consequatur exercitationem. Adipisci fugit vero nam ea quasi."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "jovanny@example.org"], ["author_name", "Baby Marquardt"], ["body", "Ipsum pariatur eius. Consequuntur reprehenderit adipisci ut hic odio. Veniam qui eius excepturi."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "lexie@example.com"], ["author_name", "Dr. Hulda Kessler"], ["body", "Et et occaecati iste architecto optio."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "loren_rippin@example.net"], ["author_name", "Viviane Legros III"], ["body", "Ratione quis cumque ut debitis non dolor. Necessitatibus sed sed odit et dolores quia."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "karlie@example.com"], ["author_name", "Filiberto Moore III"], ["body", "Corporis neque perferendis iusto beatae voluptate necessitatibus quibusdam. Rerum dolorem repellendus aut maxime. Enim quidem quaerat nobis consequatur unde doloremque inventore."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "michelle@example.net"], ["author_name", "Leo Reynolds"], ["body", "Ut optio et non sed veritatis possimus nihil. Qui assumenda numquam in."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "camilla@example.com"], ["author_name", "Miss Anabelle Conroy"], ["body", "Voluptate rerum itaque."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "charlene@example.org"], ["author_name", "Hanna Stoltenberg"], ["body", "Impedit aut omnis odit qui error et."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "hiram.abernathy@example.net"], ["author_name", "Miss Cameron Dooley"], ["body", "Quos incidunt tempora aspernatur aut. Mollitia voluptatibus illum inventore. Quo dolor dolor."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "emerson.lubowitz@example.net"], ["author_name", "Mekhi Keeling"], ["body", "Illo sunt deserunt molestias a ipsum."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "marisol@example.org"], ["author_name", "Celestino Kutch"], ["body", "Sed tempore sed."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "kayden_leannon@example.org"], ["author_name", "Ms. Muriel Lang"], ["body", "Corporis iure ex voluptatibus maiores."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "tracey_dicki@example.com"], ["author_name", "Abdullah Kuhlman"], ["body", "Tempora dolore nobis ut. At voluptatum dicta aperiam quas deleniti et. Architecto dicta voluptas id quia assumenda maiores."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'walton@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "walton@example.net"], ["encrypted_password", "$2a$04$eSjI73WNt9eqpwoADWVWOOThgahPBmc6uNZqt0NvZfAkikSAQ3g0K"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 13], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["description", "Molestiae consequuntur inventore. Ipsa magni qui esse sed et. Dolorem exercitationem illo ipsum quia eum minus. Magni consectetur sequi."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Animi neque unde quia sit."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aspernatur-laborum-3' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 14], ["blog_id", 1], ["body", "Fugiat veritatis animi qui. A labore vero. Quia consectetur minus iusto odio quos eos. Expedita similique molestiae tempora et nam. Itaque ea dicta recusandae. Quas eaque reiciendis fuga. Cumque doloremque culpa optio deserunt voluptatum."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["excerpt", "Aliquam hic ullam autem."], ["published", true], ["slug", "aspernatur-laborum-3"], ["title", "Laboriosam autem praesentium labore."], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test3' OR lower(name) = 'rspec3' OR lower(name) = 'ruby3' OR lower(name) = '#rails3') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails3"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'libero-reprehenderit-4' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 15], ["blog_id", 1], ["body", "Consectetur officiis porro aut ducimus. Sed aliquam omnis. Autem architecto non sed laborum ea delectus doloremque. Consequatur voluptatem similique dignissimos iste eaque reiciendis. Error quia voluptatem voluptate sed. Totam natus et beatae ratione."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["excerpt", "Soluta."], ["published", true], ["slug", "libero-reprehenderit-4"], ["title", "Nihil laborum aliquam perspiciatis at veritatis voluptatum."], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test4' OR lower(name) = 'rspec4' OR lower(name) = 'ruby4' OR lower(name) = '#rails4') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test4' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails4"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aliquam-ipsam-5' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 16], ["blog_id", 1], ["body", "In ut alias velit adipisci. Quaerat molestias delectus recusandae maxime eos ut. Error et distinctio ad delectus tempora at. Alias inventore rerum perferendis quod. Cumque aut et est nihil. Similique iure in placeat ut minima dolorem."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["excerpt", "Aliquid harum perferendis."], ["published", true], ["slug", "aliquam-ipsam-5"], ["title", "Perferendis accusamus vel id fuga."], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test5' OR lower(name) = 'rspec5' OR lower(name) = 'ruby5' OR lower(name) = '#rails5') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test5"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby5"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails5"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nulla-sed-6' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 17], ["blog_id", 1], ["body", "Velit fuga unde ea adipisci maiores sint nihil. Nostrum dolores voluptatum voluptatibus blanditiis accusamus unde. Illum aut aut sed et commodi cum dolor. Odit sit sed aut ut ad est iste. Magnam omnis est eum quasi praesentium exercitationem rerum."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["excerpt", "Aut vel optio perspiciatis."], ["published", true], ["slug", "nulla-sed-6"], ["title", "Qui ratione qui magnam non unde."], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test6' OR lower(name) = 'rspec6' OR lower(name) = 'ruby6' OR lower(name) = '#rails6') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test6"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec6"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby6"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails6"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'id-dolorem-7' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 18], ["blog_id", 1], ["body", "Libero iure amet sapiente. Quasi ut repudiandae praesentium quae non. Voluptate voluptas officia magni rerum qui. Ad aut delectus minima possimus ut dolorem. Est aut enim. Odio enim modi esse rerum mollitia."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["excerpt", "Repellat."], ["published", true], ["slug", "id-dolorem-7"], ["title", "Impedit deserunt sunt qui laboriosam."], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test7' OR lower(name) = 'rspec7' OR lower(name) = 'ruby7' OR lower(name) = '#rails7') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails7"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 11ms (Views: 3.2ms | ActiveRecord: 0.1ms) Almanac::Post Load (0.3ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'kaela@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "kaela@example.org"], ["encrypted_password", "$2a$04$7ElFttWIES2F62zVLt0tK.zFURkGb9oJsVcBWIsko2bK2L/sqeNA2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 19], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["description", "Dolorum suscipit quidem eos fugiat. Voluptatem fuga omnis. Est enim accusamus. Nihil aut et corporis optio provident recusandae et. Et quia in voluptatem similique autem ullam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Non dolorum error aperiam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quia-ducimus-8' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 20], ["blog_id", 1], ["body", "Officiis cupiditate ut ea minus. Est optio ratione aut voluptate nulla et. Officia rem quia quia. Ad veritatis recusandae error. Itaque ut exercitationem deleniti."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["excerpt", "Facere commodi et qui."], ["published", false], ["slug", "quia-ducimus-8"], ["title", "Iure quas pariatur quia cupiditate sit voluptatem blanditiis."], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test8' OR lower(name) = 'rspec8' OR lower(name) = 'ruby8' OR lower(name) = '#rails8') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test8"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails8"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quasi-ut-9' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 21], ["blog_id", 1], ["body", "Iste accusamus ea vel. Aut eius vel aperiam assumenda ullam est. Numquam nobis aliquid. Est quasi qui asperiores deleniti. Laboriosam fuga expedita vel quod harum."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["excerpt", "Et quaerat cum aliquid est soluta."], ["published", false], ["slug", "quasi-ut-9"], ["title", "Nihil autem perferendis minima."], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test9' OR lower(name) = 'rspec9' OR lower(name) = 'ruby9' OR lower(name) = '#rails9') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test9' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test9"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec9"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby9"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails9"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'laboriosam-dicta-10' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 22], ["blog_id", 1], ["body", "Ipsum vitae est reiciendis magnam doloribus aliquid sunt. Quod quasi ullam est magni eos quidem. Natus dolor soluta eos reprehenderit et et. Tenetur magni et quisquam quia similique numquam alias. Itaque omnis praesentium molestiae rerum."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["excerpt", "Autem."], ["published", false], ["slug", "laboriosam-dicta-10"], ["title", "Aut libero deleniti ipsa reiciendis."], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test10' OR lower(name) = 'rspec10' OR lower(name) = 'ruby10' OR lower(name) = '#rails10') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test10"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec10"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby10"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails10"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 6ms (Views: 1.4ms | ActiveRecord: 0.1ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f' ORDER BY written_at DESC, id DESC  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jairo@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jairo@example.org"], ["encrypted_password", "$2a$04$9elN6YLPgqYYk1AI4SJ20OeJpYy0RAP6aCE0WOSbsVGAOhVKLjgxy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 23], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["description", "Molestiae corporis esse voluptatum nulla quia minima dolor. Nisi et qui consectetur. Nemo culpa et. Dolores sed asperiores aut quia consequuntur rem. Qui tempore eaque."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Pariatur rerum vel possimus qui."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 31ms (Views: 1.6ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'gladys_witting@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "gladys_witting@example.com"], ["encrypted_password", "$2a$04$OXdVHTlFmWuHsITVsAw1ROLPhJ42aAtXgVRJVSrHDZFJq82Eq7RhS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 24], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["description", "Molestiae consequuntur inventore. Ipsa magni qui esse sed et. Dolorem exercitationem illo ipsum quia eum minus. Magni consectetur sequi."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Rerum inventore dolores alias."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Laboriosam autem praesentium labore.", "slug"=>"aspernatur-laborum-11", "excerpt"=>"Aliquam hic ullam autem.", "body"=>"Fugiat veritatis animi qui. A labore vero. Quia consectetur minus iusto odio quos eos. Expedita similique molestiae tempora et nam. Itaque ea dicta recusandae. Quas eaque reiciendis fuga. Cumque doloremque culpa optio deserunt voluptatum.", "published"=>true, "tag_list"=>"common,test11,rspec11,ruby11,#rails11", "author_id"=>"25", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aspernatur-laborum-11' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Fugiat veritatis animi qui. A labore vero. Quia consectetur minus iusto odio quos eos. Expedita similique molestiae tempora et nam. Itaque ea dicta recusandae. Quas eaque reiciendis fuga. Cumque doloremque culpa optio deserunt voluptatum."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["excerpt", "Aliquam hic ullam autem."], ["published", true], ["slug", "aspernatur-laborum-11"], ["title", "Laboriosam autem praesentium labore."], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test11' OR lower(name) = 'rspec11' OR lower(name) = 'ruby11' OR lower(name) = '#rails11') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test11"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec11"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby11"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails11"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 33ms (ActiveRecord: 2.6ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"   (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'richmond_terry@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "richmond_terry@example.org"], ["encrypted_password", "$2a$04$Pk6NhkZM/HgPHBAP4oLsheO6iujKuJFTBkDevsEqWuC5muSXkOtb."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 26], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["description", "Molestiae excepturi adipisci sequi ipsa consequuntur eveniet enim. Et voluptatem consequatur neque eos. Libero quod voluptatum fugiat quis ratione debitis eos."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Architecto consequuntur id possimus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Mollitia autem aliquid cum quo dolor reprehenderit minima.", "slug"=>"laborum-cupiditate-12", "excerpt"=>"Et ratione quo.", "body"=>"Fugit quae odio quam. Veritatis quae consequatur et. Illo odit quidem repellendus et. Consequatur corporis natus ad in dolor. Harum magnam laboriosam.", "published"=>true, "tag_list"=>"common,test12,rspec12,ruby12,#rails12", "author_id"=>"27", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'laborum-cupiditate-12' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Fugit quae odio quam. Veritatis quae consequatur et. Illo odit quidem repellendus et. Consequatur corporis natus ad in dolor. Harum magnam laboriosam."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["excerpt", "Et ratione quo."], ["published", true], ["slug", "laborum-cupiditate-12"], ["title", "Mollitia autem aliquid cum quo dolor reprehenderit minima."], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test12' OR lower(name) = 'rspec12' OR lower(name) = 'ruby12' OR lower(name) = '#rails12') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test12"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec12"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby12"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails12"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 27ms (ActiveRecord: 2.3ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'gladys_witting@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "gladys_witting@example.com"], ["encrypted_password", "$2a$04$3KVQYb4EoNzEeob9WpfTG.bacG5IMxB8y7cUW1QVRikaSuYVL1wE6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 28], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["description", "Molestiae consequuntur inventore. Ipsa magni qui esse sed et. Dolorem exercitationem illo ipsum quia eum minus. Magni consectetur sequi."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Rerum inventore dolores alias."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_posts"  Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"sequi-quisquam-13", "excerpt"=>"Id eos consequuntur nisi quod.", "body"=>"Aliquam hic ullam autem animi sed. Nobis aperiam alias quia a. Harum saepe voluptatibus vel omnis voluptas facere. Alias iusto perspiciatis voluptatibus voluptas voluptatem. Voluptas ut vel. Laboriosam vitae reiciendis architecto officiis consequatur ut. Sed voluptas vel enim sit qui est.", "published"=>true, "tag_list"=>"common,test13,rspec13,ruby13,#rails13", "author_id"=>"29", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sequi-quisquam-13' LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 13ms (Views: 2.4ms | ActiveRecord: 0.4ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'sigrid@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "sigrid@example.com"], ["encrypted_password", "$2a$04$/IlFROHJxE6t/al3uB3NI.F2UPn2ja3inQydC.NoRJAy0gvyVGBBG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 30], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["description", "Unde tenetur qui nihil itaque quis voluptate distinctio. Rem repudiandae qui velit ut ad aut illum. Sit dignissimos et ullam corporis id provident esse. Pariatur deleniti ipsum voluptatem."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Facere vel."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"nisi-quo-14", "excerpt"=>"Ut.", "body"=>"Consectetur numquam voluptates dolor porro. Voluptate commodi voluptas nesciunt nihil aliquid autem. Qui sed amet. Fugit tempora id. Eos eum vel.", "published"=>true, "tag_list"=>"common,test14,rspec14,ruby14,#rails14", "author_id"=>"31", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nisi-quo-14' LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 1.5ms | ActiveRecord: 0.4ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'gladys_witting@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "gladys_witting@example.com"], ["encrypted_password", "$2a$04$Q4sTjDzCxv/efmvlTka.g.5XELab7SAlLdeh/Hj0Ls0rFLXXS5pkC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 32], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["description", "Molestiae consequuntur inventore. Ipsa magni qui esse sed et. Dolorem exercitationem illo ipsum quia eum minus. Magni consectetur sequi."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Rerum inventore dolores alias."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aspernatur-laborum-15' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 33], ["blog_id", 1], ["body", "Fugiat veritatis animi qui. A labore vero. Quia consectetur minus iusto odio quos eos. Expedita similique molestiae tempora et nam. Itaque ea dicta recusandae. Quas eaque reiciendis fuga. Cumque doloremque culpa optio deserunt voluptatum."], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["excerpt", "Aliquam hic ullam autem."], ["published", true], ["slug", "aspernatur-laborum-15"], ["title", "Laboriosam autem praesentium labore."], ["updated_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test15' OR lower(name) = 'rspec15' OR lower(name) = 'ruby15' OR lower(name) = '#rails15') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test15"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec15"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby15"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails15"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:55 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Testz", "slug"=>"pariatur-eum-16", "excerpt"=>"Provident omnis harum aut veritatis qui.", "body"=>"Qui et quos non omnis. Illo error molestiae est. Autem maiores consequuntur distinctio ut necessitatibus omnis. Alias voluptas voluptas accusantium similique eaque qui. Cum architecto sed velit excepturi omnis.", "published"=>true, "tag_list"=>"common,test16,rspec16,ruby16,#rails16", "author_id"=>"34", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.3ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'pariatur-eum-16' AND "almanac_posts"."id" != 1) LIMIT 1  (0.1ms) UPDATE "almanac_posts" SET "title" = 'Testz', "slug" = 'pariatur-eum-16', "excerpt" = 'Provident omnis harum aut veritatis qui.', "body" = 'Qui et quos non omnis. Illo error molestiae est. Autem maiores consequuntur distinctio ut necessitatibus omnis. Alias voluptas voluptas accusantium similique eaque qui. Cum architecto sed velit excepturi omnis.', "author_id" = 34, "updated_at" = '2012-12-28 04:37:55.991091' WHERE "almanac_posts"."id" = 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test16' OR lower(name) = 'rspec16' OR lower(name) = 'ruby16' OR lower(name) = '#rails16') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test16' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test16"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec16"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby16"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails16"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."tagger_type" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."context" = 'tags' AND "taggings"."tag_id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 44ms (ActiveRecord: 2.9ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'joy.marvin@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "joy.marvin@example.org"], ["encrypted_password", "$2a$04$uDS9gv20iasmtP9C4AIWfO6O6IUMG5MjzfZq2jFzMTuzCrV8n6jte"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 35], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["description", "Et est ut nesciunt. Illo odit quidem repellendus et. Consequatur corporis natus ad in dolor. Harum magnam laboriosam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et quo dolore quos consectetur veniam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eius-dolores-17' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 36], ["blog_id", 1], ["body", "Placeat et at reprehenderit aliquid nihil. Eius debitis inventore. Et ut impedit vero fugit aut. Maxime modi placeat rem error vel ducimus. Reprehenderit inventore corporis laudantium. Qui in porro vel. Error consequatur ipsum dolorem eius alias molestias numquam."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["excerpt", "Nisi quo nam."], ["published", true], ["slug", "eius-dolores-17"], ["title", "Iusto quod vel molestiae repellendus doloribus."], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test17' OR lower(name) = 'rspec17' OR lower(name) = 'ruby17' OR lower(name) = '#rails17') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test17"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec17"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby17"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails17"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Aut animi eum et.", "slug"=>"consectetur-est-18", "excerpt"=>"Molestias tenetur laudantium fugit.", "body"=>"Quia labore ut. Doloribus deleniti eos eveniet rerum nobis. Provident ut dolores dignissimos corporis earum unde. Alias neque labore exercitationem. Et quia saepe nesciunt in dolore illum.", "published"=>true, "tag_list"=>"common,test18,rspec18,ruby18,#rails18", "author_id"=>"37", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'consectetur-est-18' AND "almanac_posts"."id" != 1) LIMIT 1  (0.1ms) UPDATE "almanac_posts" SET "title" = 'Aut animi eum et.', "slug" = 'consectetur-est-18', "excerpt" = 'Molestias tenetur laudantium fugit.', "body" = 'Quia labore ut. Doloribus deleniti eos eveniet rerum nobis. Provident ut dolores dignissimos corporis earum unde. Alias neque labore exercitationem. Et quia saepe nesciunt in dolore illum.', "author_id" = 37, "updated_at" = '2012-12-28 04:37:56.069736' WHERE "almanac_posts"."id" = 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test18' OR lower(name) = 'rspec18' OR lower(name) = 'ruby18' OR lower(name) = '#rails18') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test18' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test18"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec18' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec18"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby18' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby18"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails18' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails18"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."tagger_type" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."context" = 'tags' AND "taggings"."tag_id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 95ms (ActiveRecord: 2.9ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'gladys_witting@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "gladys_witting@example.com"], ["encrypted_password", "$2a$04$HPuNj2R7bItlK1WcTuPg5OcZbgU9zHOiGznCO8.vBZonV1hNCokhq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 38], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["description", "Molestiae consequuntur inventore. Ipsa magni qui esse sed et. Dolorem exercitationem illo ipsum quia eum minus. Magni consectetur sequi."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Rerum inventore dolores alias."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aspernatur-laborum-19' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 39], ["blog_id", 1], ["body", "Fugiat veritatis animi qui. A labore vero. Quia consectetur minus iusto odio quos eos. Expedita similique molestiae tempora et nam. Itaque ea dicta recusandae. Quas eaque reiciendis fuga. Cumque doloremque culpa optio deserunt voluptatum."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["excerpt", "Aliquam hic ullam autem."], ["published", true], ["slug", "aspernatur-laborum-19"], ["title", "Laboriosam autem praesentium labore."], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test19' OR lower(name) = 'rspec19' OR lower(name) = 'ruby19' OR lower(name) = '#rails19') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test19"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec19"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby19"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails19"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"pariatur-eum-20", "excerpt"=>"Provident omnis harum aut veritatis qui.", "body"=>"Qui et quos non omnis. Illo error molestiae est. Autem maiores consequuntur distinctio ut necessitatibus omnis. Alias voluptas voluptas accusantium similique eaque qui. Cum architecto sed velit excepturi omnis.", "published"=>true, "tag_list"=>"common,test20,rspec20,ruby20,#rails20", "author_id"=>"40", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'pariatur-eum-20' AND "almanac_posts"."id" != 1) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 13ms (Views: 2.1ms | ActiveRecord: 0.6ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'joy.marvin@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "joy.marvin@example.org"], ["encrypted_password", "$2a$04$IRknNA7pvtN9HLu5bwFbHekro0gRf58uoYULvU4g5gzm8m17GwauG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 41], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["description", "Et est ut nesciunt. Illo odit quidem repellendus et. Consequatur corporis natus ad in dolor. Harum magnam laboriosam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et quo dolore quos consectetur veniam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eius-dolores-21' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 42], ["blog_id", 1], ["body", "Placeat et at reprehenderit aliquid nihil. Eius debitis inventore. Et ut impedit vero fugit aut. Maxime modi placeat rem error vel ducimus. Reprehenderit inventore corporis laudantium. Qui in porro vel. Error consequatur ipsum dolorem eius alias molestias numquam."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["excerpt", "Nisi quo nam."], ["published", true], ["slug", "eius-dolores-21"], ["title", "Iusto quod vel molestiae repellendus doloribus."], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test21' OR lower(name) = 'rspec21' OR lower(name) = 'ruby21' OR lower(name) = '#rails21') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test21"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec21"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby21"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails21"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"tempore-maiores-22", "excerpt"=>"Quasi ut totam.", "body"=>"Molestias tenetur laudantium fugit deserunt non. Quis repellat rem molestias accusamus et assumenda. Quasi laudantium quae unde aut expedita voluptatem ut. Provident ut dolores dignissimos corporis earum unde. Alias neque labore exercitationem. Et quia saepe nesciunt in dolore illum. Voluptatum dolor minima rerum aut consequuntur.", "published"=>true, "tag_list"=>"common,test22,rspec22,ruby22,#rails22", "author_id"=>"43", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'tempore-maiores-22' AND "almanac_posts"."id" != 1) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 12ms (Views: 1.5ms | ActiveRecord: 0.5ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'gladys_witting@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "gladys_witting@example.com"], ["encrypted_password", "$2a$04$S9OpwtpKqQmwkhzXgLbz3eHvpjAuGnXCOK3s4yWWg1ul74NR.usJ6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 44], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["description", "Molestiae consequuntur inventore. Ipsa magni qui esse sed et. Dolorem exercitationem illo ipsum quia eum minus. Magni consectetur sequi."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Rerum inventore dolores alias."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aspernatur-laborum-23' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 45], ["blog_id", 1], ["body", "Fugiat veritatis animi qui. A labore vero. Quia consectetur minus iusto odio quos eos. Expedita similique molestiae tempora et nam. Itaque ea dicta recusandae. Quas eaque reiciendis fuga. Cumque doloremque culpa optio deserunt voluptatum."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["excerpt", "Aliquam hic ullam autem."], ["published", true], ["slug", "aspernatur-laborum-23"], ["title", "Laboriosam autem praesentium labore."], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test23' OR lower(name) = 'rspec23' OR lower(name) = 'ruby23' OR lower(name) = '#rails23') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test23"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec23"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby23"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails23"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'libero-reprehenderit-24' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 46], ["blog_id", 1], ["body", "Consectetur officiis porro aut ducimus. Sed aliquam omnis. Autem architecto non sed laborum ea delectus doloremque. Consequatur voluptatem similique dignissimos iste eaque reiciendis. Error quia voluptatem voluptate sed. Totam natus et beatae ratione."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["excerpt", "Soluta."], ["published", true], ["slug", "libero-reprehenderit-24"], ["title", "Nihil laborum aliquam perspiciatis at veritatis voluptatum."], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test24' OR lower(name) = 'rspec24' OR lower(name) = 'ruby24' OR lower(name) = '#rails24') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test24' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test24"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec24"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby24"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails24"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aliquam-ipsam-25' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 47], ["blog_id", 1], ["body", "In ut alias velit adipisci. Quaerat molestias delectus recusandae maxime eos ut. Error et distinctio ad delectus tempora at. Alias inventore rerum perferendis quod. Cumque aut et est nihil. Similique iure in placeat ut minima dolorem."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["excerpt", "Aliquid harum perferendis."], ["published", true], ["slug", "aliquam-ipsam-25"], ["title", "Perferendis accusamus vel id fuga."], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test25' OR lower(name) = 'rspec25' OR lower(name) = 'ruby25' OR lower(name) = '#rails25') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test25"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec25"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby25"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails25"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nulla-sed-26' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 48], ["blog_id", 1], ["body", "Velit fuga unde ea adipisci maiores sint nihil. Nostrum dolores voluptatum voluptatibus blanditiis accusamus unde. Illum aut aut sed et commodi cum dolor. Odit sit sed aut ut ad est iste. Magnam omnis est eum quasi praesentium exercitationem rerum."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["excerpt", "Aut vel optio perspiciatis."], ["published", true], ["slug", "nulla-sed-26"], ["title", "Qui ratione qui magnam non unde."], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test26' OR lower(name) = 'rspec26' OR lower(name) = 'ruby26' OR lower(name) = '#rails26') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test26' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails26"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'id-dolorem-27' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 49], ["blog_id", 1], ["body", "Libero iure amet sapiente. Quasi ut repudiandae praesentium quae non. Voluptate voluptas officia magni rerum qui. Ad aut delectus minima possimus ut dolorem. Est aut enim. Odio enim modi esse rerum mollitia."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["excerpt", "Repellat."], ["published", true], ["slug", "id-dolorem-27"], ["title", "Impedit deserunt sunt qui laboriosam."], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test27' OR lower(name) = 'rspec27' OR lower(name) = 'ruby27' OR lower(name) = '#rails27') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails27"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Parameters: {"tag_name"=>"common"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common') Completed 200 OK in 10ms (Views: 2.8ms | ActiveRecord: 0.2ms) Almanac::Post Load (0.3ms) SELECT "almanac_posts".* FROM "almanac_posts" JOIN taggings posts_taggings_53991b5 ON posts_taggings_53991b5.taggable_id = almanac_posts.id AND posts_taggings_53991b5.taggable_type = 'Almanac::Post' AND posts_taggings_53991b5.tag_id = 1 WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'landen_waelchi@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "landen_waelchi@example.com"], ["encrypted_password", "$2a$04$zPzKXFyKV6q.ETN43Jqeku0Hdr/3P0AFE.LYypAmNmewT3GLc7QR6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 50], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["description", "Voluptatum architecto ipsa rerum rem consectetur quo. Accusamus quas ullam. Dolores eos cupiditate facilis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sunt iure rerum illo delectus et impedit."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 6ms (Views: 1.6ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'gladys_witting@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "gladys_witting@example.com"], ["encrypted_password", "$2a$04$SbPheG5dj07qInonHs0JC.kRfQfmO9ias3JaF1AiydMyhAfrqoVsO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 51], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["description", "Molestiae consequuntur inventore. Ipsa magni qui esse sed et. Dolorem exercitationem illo ipsum quia eum minus. Magni consectetur sequi."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Rerum inventore dolores alias."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aspernatur-laborum-28' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 52], ["blog_id", 1], ["body", "Fugiat veritatis animi qui. A labore vero. Quia consectetur minus iusto odio quos eos. Expedita similique molestiae tempora et nam. Itaque ea dicta recusandae. Quas eaque reiciendis fuga. Cumque doloremque culpa optio deserunt voluptatum."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["excerpt", "Aliquam hic ullam autem."], ["published", true], ["slug", "aspernatur-laborum-28"], ["title", "Laboriosam autem praesentium labore."], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test28' OR lower(name) = 'rspec28' OR lower(name) = 'ruby28' OR lower(name) = '#rails28') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test28"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec28"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby28"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails28"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_posts"  Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."post_id" = 1 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 21ms (ActiveRecord: 1.1ms)  (0.0ms) SELECT COUNT(*) FROM "almanac_posts"   (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'richmond_terry@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "richmond_terry@example.org"], ["encrypted_password", "$2a$04$bLE1g3VMpWpIZlYhFvtWUuOd02L/x6XvHzx3SA/L9.e6LSLfhmjx."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 53], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["description", "Molestiae excepturi adipisci sequi ipsa consequuntur eveniet enim. Et voluptatem consequatur neque eos. Libero quod voluptatum fugiat quis ratione debitis eos."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Architecto consequuntur id possimus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'laborum-cupiditate-29' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 54], ["blog_id", 1], ["body", "Fugit quae odio quam. Veritatis quae consequatur et. Illo odit quidem repellendus et. Consequatur corporis natus ad in dolor. Harum magnam laboriosam."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["excerpt", "Et ratione quo."], ["published", true], ["slug", "laborum-cupiditate-29"], ["title", "Mollitia autem aliquid cum quo dolor reprehenderit minima."], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test29' OR lower(name) = 'rspec29' OR lower(name) = 'ruby29' OR lower(name) = '#rails29') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails29"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."post_id" = 1 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 11ms (ActiveRecord: 0.9ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 56], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["description", "Iure quia commodi minima adipisci. Dolorum omnis voluptas eveniet officiis. Et rerum dolores dignissimos praesentium quo et mollitia. Quam facilis ut neque mollitia. Autem et deserunt."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ipsam quae modi earum atque saepe."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'omnis-aut-30' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 55], ["blog_id", 1], ["body", "Animi error qui soluta non eius porro. Aut voluptas magnam officiis hic. Ut tempore accusamus repellat explicabo quis alias asperiores. Quam nesciunt hic nisi maxime dolorem. Iste nihil consequatur et. Et unde voluptatem impedit sit nostrum. Eum nostrum sit."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["excerpt", "Cum aut illum voluptatem."], ["published", true], ["slug", "omnis-aut-30"], ["title", "Dolores fugiat consectetur ut."], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test30' OR lower(name) = 'rspec30' OR lower(name) = 'ruby30' OR lower(name) = '#rails30') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails30"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "piper.bahringer@example.net"], ["author_name", "Mr. Casey Wintheiser"], ["body", "Impedit voluptatibus eum eligendi qui sequi dolorem sit. Magni nostrum quia accusamus aut. Qui dolorem sint dolor sunt."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" ORDER BY id ASC  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 58], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["description", "Animi consequatur minus quasi. Similique iure in placeat ut minima dolorem. Qui ratione qui magnam non unde. Dolore quas sint laborum quod."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Delectus natus culpa voluptas repellendus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quo-impedit-31' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 57], ["blog_id", 1], ["body", "Est rem et tenetur voluptatem qui porro. Consequatur saepe omnis velit placeat vero ad deserunt. Cupiditate dolores fugit velit mollitia corrupti. Necessitatibus cumque soluta. Eos cum quia omnis. Expedita perspiciatis odio ut."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["excerpt", "Omnis est quia id debitis."], ["published", true], ["slug", "quo-impedit-31"], ["title", "Non est illo et."], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test31' OR lower(name) = 'rspec31' OR lower(name) = 'ruby31' OR lower(name) = '#rails31') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails31"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 60], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["description", "Quia iure neque quidem corrupti id. Qui qui eum ullam iste. Eius dolores molestias ut consequatur fugit repellendus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et ut omnis quod."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'magni-temporibus-32' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 59], ["blog_id", 1], ["body", "Cumque necessitatibus recusandae quod consequuntur eum sint explicabo. Praesentium laudantium ratione perferendis quam velit accusamus corporis. Eum non labore vitae. Quia eos sunt perferendis et. Quibusdam unde quia eos temporibus facilis sit. Ducimus distinctio ipsum et excepturi animi vel perspiciatis."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["excerpt", "Eum voluptates quae quia est."], ["published", true], ["slug", "magni-temporibus-32"], ["title", "Aut et et aliquam dolore debitis."], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test32' OR lower(name) = 'rspec32' OR lower(name) = 'ruby32' OR lower(name) = '#rails32') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec32"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby32"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails32"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 62], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["description", "Quae qui ullam expedita maiores labore quia. Aut sequi repudiandae. At aut vel dignissimos tempore eveniet ut quo."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Asperiores atque."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'deleniti-amet-33' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 61], ["blog_id", 1], ["body", "Est enim accusamus. Nihil aut et corporis optio provident recusandae et. Et quia in voluptatem similique autem ullam. Iure quas pariatur quia cupiditate sit voluptatem blanditiis. Error et quidem quas. Omnis in explicabo ut."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["excerpt", "Quasi impedit vel qui similique."], ["published", true], ["slug", "deleniti-amet-33"], ["title", "Reiciendis aut sint voluptatem temporibus."], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test33' OR lower(name) = 'rspec33' OR lower(name) = 'ruby33' OR lower(name) = '#rails33') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test33"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec33"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby33"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails33"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 64], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["description", "Et beatae placeat corporis sit nihil. Est quia minima ducimus corporis molestias repellat. Quidem ea sit. Culpa voluptas nisi harum molestiae et architecto dolor. Inventore enim nesciunt ducimus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Molestiae omnis velit."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'corporis-dolor-34' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 63], ["blog_id", 1], ["body", "Sed qui quod laudantium beatae culpa necessitatibus omnis. Rerum optio non quibusdam temporibus. Alias numquam dicta porro nobis quia perspiciatis modi. Nostrum quas qui. Consectetur aut enim quas occaecati et praesentium. Numquam quia eos. Ab nesciunt voluptatem aliquid perferendis vel mollitia."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["excerpt", "Modi vitae."], ["published", true], ["slug", "corporis-dolor-34"], ["title", "Dolorum alias quia."], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test34' OR lower(name) = 'rspec34' OR lower(name) = 'ruby34' OR lower(name) = '#rails34') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails34"]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "angela@example.org"], ["author_name", "Weston MacGyver"], ["body", "Dolores error dolor aut et nemo in rerum. Error excepturi sed et aut voluptas atque. Occaecati quo corporis non nobis."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "glen@example.net"], ["author_name", "Dr. Randal Friesen"], ["body", "Sit et doloremque autem tenetur ut."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "melia_williamson@example.net"], ["author_name", "Sunny Casper I"], ["body", "Et quia magnam nostrum esse ad quo aliquid."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "amber_kunde@example.net"], ["author_name", "Adah Zemlak"], ["body", "Et quo dolore quos consectetur veniam consequatur. Omnis veritatis inventore nemo. Et nobis tenetur."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "isabelle@example.com"], ["author_name", "Gloria Conroy"], ["body", "Quia velit debitis. Adipisci inventore quia vel delectus omnis."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "renee@example.com"], ["author_name", "Barbara Mosciski MD"], ["body", "Possimus enim dolor. Facere quam minima. Enim voluptas est et deserunt facilis pariatur."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "amira@example.com"], ["author_name", "Mr. Hiram Mraz"], ["body", "Impedit et nesciunt tempora sed dolores nam. Expedita delectus perspiciatis excepturi voluptatem."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "filiberto.hamill@example.org"], ["author_name", "Dr. Moises Kris"], ["body", "Laudantium commodi praesentium ut."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "lionel@example.org"], ["author_name", "Ubaldo Jewess"], ["body", "Nostrum perspiciatis deserunt quia laudantium accusamus et ut. Sed quae consequatur modi rem libero quas. Possimus ipsa assumenda quae repudiandae."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "rhianna_harber@example.net"], ["author_name", "Ms. Abbigail Borer"], ["body", "Neque nobis quidem sit fuga et. Quam voluptatum nihil totam vero. Corporis ipsum distinctio voluptatem omnis omnis est quia."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "dewayne_hamill@example.com"], ["author_name", "Mozelle Cremin"], ["body", "A quidem in pariatur. Omnis voluptates est quaerat."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "kenyatta_effertz@example.net"], ["author_name", "Miss Leola Gaylord"], ["body", "Pariatur ipsa ratione non dolore dolores modi illo. Ullam minus quia."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "christian.schimmel@example.net"], ["author_name", "Columbus Ondricka"], ["body", "Qui voluptate sunt aut voluptatem voluptatem."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "elian@example.org"], ["author_name", "Freida Mueller"], ["body", "Corrupti asperiores consequatur. Dolorem et enim quibusdam qui quos a."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "narciso@example.com"], ["author_name", "Crystel Lakin"], ["body", "Tempore autem recusandae suscipit debitis ut reiciendis modi. Hic eligendi molestias id quo. Illo sunt repellat quam qui in voluptatem officiis."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments" WHERE "almanac_comments"."spam" = 't'  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'gladys_witting@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "gladys_witting@example.com"], ["encrypted_password", "$2a$04$U/2/KVZQ6tUe1DwwqdK6j.MV5UpyQ8xs6LfpccUpDKMOL2qV9yDpm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 66], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["description", "A labore vero. Quia consectetur minus iusto odio quos eos. Expedita similique molestiae tempora et nam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Nobis aperiam alias quia."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'accusantium-nulla-35' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 65], ["blog_id", 1], ["body", "Facere accusamus labore ex ipsa. Reprehenderit consequatur quaerat similique laborum eum id. Aspernatur sunt itaque. Dolores debitis nemo quidem est eius ducimus voluptatem. Aliquam hic ullam autem animi sed."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["excerpt", "Non voluptas recusandae porro."], ["published", true], ["slug", "accusantium-nulla-35"], ["title", "Rerum inventore dolores alias delectus."], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test35' OR lower(name) = 'rspec35' OR lower(name) = 'ruby35' OR lower(name) = '#rails35') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails35"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_comments"  Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Dino Rempel DVM", "author_email"=>"dayton@example.net", "body"=>"Aspernatur in voluptatem illo."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "dayton@example.net"], ["author_name", "Dino Rempel DVM"], ["body", "Aspernatur in voluptatem illo."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/accusantium-nulla-35 Completed 302 Found in 8ms (ActiveRecord: 0.5ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"   (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'myah@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "myah@example.com"], ["encrypted_password", "$2a$04$5njGdPlNFz1.n9qR/fH2cuLhUSKepvTmNE2m1QtonOKjM2vH5RyR."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 68], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["description", "Maxime est vero non. Non quasi enim rerum accusantium ut sint doloremque. Error ab et dolor."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Explicabo id illum cupiditate officiis placeat."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'cupiditate-aut-36' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 67], ["blog_id", 1], ["body", "Est facere nam voluptatibus delectus ab deserunt dolorem. Necessitatibus debitis aut optio temporibus repellendus. Error laboriosam autem quia consequatur aliquid quas omnis. Et nam minima nulla qui vero voluptatem. Magnam optio vel maiores aut qui dolorum neque."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["excerpt", "Tempore fugiat velit eos minus ut."], ["published", true], ["slug", "cupiditate-aut-36"], ["title", "Sunt optio illum voluptatibus voluptatem non."], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test36' OR lower(name) = 'rspec36' OR lower(name) = 'ruby36' OR lower(name) = '#rails36') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test36"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec36"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby36"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails36"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Janae Wehner", "author_email"=>"johann@example.org", "body"=>"Veritatis eligendi sed placeat repellendus quia omnis. Id ut commodi est autem amet. Non dolorem quia porro voluptatibus voluptate rem."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "johann@example.org"], ["author_name", "Janae Wehner"], ["body", "Veritatis eligendi sed placeat repellendus quia omnis. Id ut commodi est autem amet. Non dolorem quia porro voluptatibus voluptate rem."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/cupiditate-aut-36 Completed 302 Found in 7ms (ActiveRecord: 0.4ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'gladys_witting@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "gladys_witting@example.com"], ["encrypted_password", "$2a$04$EghBWoQ7qH5zUfFuQmK2X.RKwC8oQ7g7ooUwIFJ6LjBLj3KfPmYDS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.6ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 70], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["description", "A labore vero. Quia consectetur minus iusto odio quos eos. Expedita similique molestiae tempora et nam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Nobis aperiam alias quia."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'accusantium-nulla-37' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 69], ["blog_id", 1], ["body", "Facere accusamus labore ex ipsa. Reprehenderit consequatur quaerat similique laborum eum id. Aspernatur sunt itaque. Dolores debitis nemo quidem est eius ducimus voluptatem. Aliquam hic ullam autem animi sed."], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["excerpt", "Non voluptas recusandae porro."], ["published", true], ["slug", "accusantium-nulla-37"], ["title", "Rerum inventore dolores alias delectus."], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test37' OR lower(name) = 'rspec37' OR lower(name) = 'ruby37' OR lower(name) = '#rails37') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test37"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec37"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby37"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails37"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Dino Rempel DVM", "author_email"=>"dayton@example.net", "body"=>nil}, "post_id"=>"1"} Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Redirected to http://test.host/almanac/accusantium-nulla-37 Completed 302 Found in 8ms (ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'pink_reynolds@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "pink_reynolds@example.net"], ["encrypted_password", "$2a$04$Wg02VG72FQjIEmZMDds.ZulDxTGcLwTBgKeDCs.9RhlSpIn1jUELu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 72], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["description", "Sed illum placeat soluta. Non et omnis quo delectus repudiandae quo. Quasi ut quas aut dolorum temporibus velit commodi."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et praesentium quia facere dolorem sed cum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'iure-iure-38' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 71], ["blog_id", 1], ["body", "Quibusdam dolores vel. A ipsa eveniet animi est. Labore a aut. Veniam sit aliquam expedita aspernatur. Voluptatem est aut saepe. Libero quod cumque nostrum natus."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Aliquid eligendi quis qui fugit."], ["published", true], ["slug", "iure-iure-38"], ["title", "Esse et sequi totam hic vel."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test38' OR lower(name) = 'rspec38' OR lower(name) = 'ruby38' OR lower(name) = '#rails38') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails38"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Wilfred Streich", "author_email"=>"freddy_marquardt@example.com", "body"=>"Id consectetur magni quod."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "freddy_marquardt@example.com"], ["author_name", "Wilfred Streich"], ["body", "Id consectetur magni quod."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/iure-iure-38 Completed 302 Found in 7ms (ActiveRecord: 0.5ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'gladys_witting@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "gladys_witting@example.com"], ["encrypted_password", "$2a$04$QzDj6kAcZnWIgS6wceQ.9u4A7qYgHNhgdjhV6AxKtM4bT23Cok5Z2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 74], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["description", "A labore vero. Quia consectetur minus iusto odio quos eos. Expedita similique molestiae tempora et nam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Nobis aperiam alias quia."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'accusantium-nulla-39' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 73], ["blog_id", 1], ["body", "Facere accusamus labore ex ipsa. Reprehenderit consequatur quaerat similique laborum eum id. Aspernatur sunt itaque. Dolores debitis nemo quidem est eius ducimus voluptatem. Aliquam hic ullam autem animi sed."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Non voluptas recusandae porro."], ["published", true], ["slug", "accusantium-nulla-39"], ["title", "Rerum inventore dolores alias delectus."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test39' OR lower(name) = 'rspec39' OR lower(name) = 'ruby39' OR lower(name) = '#rails39') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test39"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec39"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby39"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails39"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "dayton@example.net"], ["author_name", "Dino Rempel DVM"], ["body", "Aspernatur in voluptatem illo."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments" Processing by Almanac::CommentsController#destroy as HTML Parameters: {"id"=>"1", "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "almanac_comments" WHERE "almanac_comments"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/1 Completed 302 Found in 46ms (ActiveRecord: 0.5ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'myah@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "myah@example.com"], ["encrypted_password", "$2a$04$4fNAOj1qhRkZSvCUYwDnresZ3Y/jk915DGYuSAfvn6.U1dGiyB30C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 76], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["description", "Maxime est vero non. Non quasi enim rerum accusantium ut sint doloremque. Error ab et dolor."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Explicabo id illum cupiditate officiis placeat."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'cupiditate-aut-40' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 75], ["blog_id", 1], ["body", "Est facere nam voluptatibus delectus ab deserunt dolorem. Necessitatibus debitis aut optio temporibus repellendus. Error laboriosam autem quia consequatur aliquid quas omnis. Et nam minima nulla qui vero voluptatem. Magnam optio vel maiores aut qui dolorum neque."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Tempore fugiat velit eos minus ut."], ["published", true], ["slug", "cupiditate-aut-40"], ["title", "Sunt optio illum voluptatibus voluptatem non."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test40' OR lower(name) = 'rspec40' OR lower(name) = 'ruby40' OR lower(name) = '#rails40') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test40"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec40"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby40"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails40"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "johann@example.org"], ["author_name", "Janae Wehner"], ["body", "Veritatis eligendi sed placeat repellendus quia omnis. Id ut commodi est autem amet. Non dolorem quia porro voluptatibus voluptate rem."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#destroy as HTML Parameters: {"id"=>"1", "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) DELETE FROM "almanac_comments" WHERE "almanac_comments"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/1 Completed 302 Found in 7ms (ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 78], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["description", "Dolore voluptates voluptatum. Incidunt dolores et explicabo minus et rem qui. Fugiat earum eum qui. Mollitia dolores officia necessitatibus cum voluptas nihil architecto."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ducimus delectus in sit incidunt et consequatur."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'harum-id-41' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptatibus-aut-42' LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 81], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["description", "Tempore quas perferendis ipsam beatae nulla ipsa. Est dolorum fugiat voluptatem. Aspernatur perspiciatis voluptatem. Dolorem suscipit voluptas ab cum sapiente sed sequi."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dicta quae quasi quibusdam earum cumque labore."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptatem-numquam-43' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 83], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["description", "Ea ut quidem magni et. Consequatur quasi similique. Occaecati animi enim facilis id. Exercitationem eveniet dolorum excepturi qui sapiente voluptas eos. Aut quidem quos et ratione dolores."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolor nesciunt."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-aut-44' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 85], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["description", "Ad at sed voluptatum. Harum recusandae sed. Doloremque dignissimos numquam atque veniam qui necessitatibus aut. Velit vitae consequatur quia ut deleniti impedit voluptatem."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sequi accusantium."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'velit-ut-45' LIMIT 1  (0.3ms) rollback transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 87], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["description", "Cumque perferendis aut neque molestias odit eos quaerat. Quia exercitationem magni. Dolores qui nihil nesciunt molestias aut. Impedit laborum est."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Minus esse occaecati velit et eveniet beatae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ex-itaque-46' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 88], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["description", "Ipsam omnis et. Similique dolores excepturi illo qui. Et numquam facilis debitis. Consequatur cupiditate occaecati quasi et. Eum earum mollitia ipsam maxime ducimus qui ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolor dolore et qui alias recusandae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'exercitationem-est-47' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 89], ["blog_id", 1], ["body", "Pariatur soluta alias autem reiciendis nostrum. Voluptatem ut doloremque. Corrupti doloremque ducimus architecto cum odio. Rerum eum cum sequi voluptates asperiores id consequatur. Accusamus eius unde at. Nisi natus neque molestias dolor et aut sunt."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Quis sed error omnis."], ["published", true], ["slug", "exercitationem-est-47"], ["title", "Velit dolore quidem illum dolorem sit consequatur nihil."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test47' OR lower(name) = 'rspec47' OR lower(name) = 'ruby47' OR lower(name) = '#rails47') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails47"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nobis-quos-48' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 90], ["blog_id", 1], ["body", "Est nostrum saepe quaerat. Itaque quia et eveniet iure amet explicabo expedita. Enim nemo itaque. Corporis impedit commodi iusto unde. Ut et voluptatem totam aliquam. Qui sit voluptas nisi enim et ducimus reiciendis."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Sunt."], ["published", true], ["slug", "nobis-quos-48"], ["title", "Et et iusto in."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test48' OR lower(name) = 'rspec48' OR lower(name) = 'ruby48' OR lower(name) = '#rails48') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test48' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails48"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 92], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["description", "Magnam nisi qui minima nihil pariatur laborum. Praesentium repudiandae temporibus ut debitis. Distinctio et inventore atque. Nostrum cumque delectus repudiandae. Sed vel maxime exercitationem corrupti veritatis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dicta reprehenderit illum tempore ducimus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 94], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["description", "Occaecati earum blanditiis aut provident. Porro omnis sint rerum quae corporis ex quia. Culpa nobis nulla sit ut delectus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Magni exercitationem totam et."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'fugit-explicabo-49' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 93], ["blog_id", 1], ["body", "Quos sed veniam. Amet sit accusantium tenetur nulla. Saepe debitis et aperiam qui quam laborum. Nihil rerum tempore. Laboriosam alias voluptas quis architecto. Eveniet quia sunt soluta."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Repudiandae placeat ducimus numquam."], ["published", true], ["slug", "fugit-explicabo-49"], ["title", "Recusandae suscipit ratione molestiae."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test50' OR lower(name) = 'rspec50' OR lower(name) = 'ruby50' OR lower(name) = '#rails50') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test50"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec50"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby50"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails50"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.4ms) rollback transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 96], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["description", "Eum sed vero sequi velit. Saepe minus velit est. Consequatur sunt odit possimus. Vitae eligendi cumque eos eum est at. Odio et illum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Blanditiis omnis et."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'unde-quia-50' LIMIT 1  (0.3ms) rollback transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 98], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["description", "Fuga laborum maiores iste suscipit ratione. Repudiandae dignissimos at voluptates ut voluptas adipisci. Repellendus dolores sed facere laudantium voluptates odit ut. Eius omnis enim iure tempore."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Fugiat eos libero quis sequi."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'est-qui-51' LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 100], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["description", "Earum nobis nesciunt aut. Sed qui quod laudantium beatae culpa necessitatibus omnis. Rerum optio non quibusdam temporibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Mollitia eum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'unde-mollitia-52' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 101], ["blog_id", 1], ["body", "Facere sed sint nostrum omnis voluptatem. At pariatur repudiandae voluptates recusandae numquam. Neque quia ea voluptas. Repudiandae et quia. Pariatur labore ut optio est eligendi doloribus."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Consequatur."], ["published", true], ["slug", "unde-mollitia-52"], ["title", "Alias numquam dicta porro nobis quia perspiciatis modi."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test54' OR lower(name) = 'rspec54' OR lower(name) = 'ruby54' OR lower(name) = '#rails54') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails54"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sit-maiores-53' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 102], ["blog_id", 1], ["body", "Magnam et voluptates dolor et reprehenderit ut facilis. Repellat ipsam ut fugit. Nostrum sed ut ex quia. Et eum dolorem excepturi. Voluptas vitae quae."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Et."], ["published", true], ["slug", "sit-maiores-53"], ["title", "Quasi eum voluptas enim iure quia architecto."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test55' OR lower(name) = 'rspec55' OR lower(name) = 'ruby55' OR lower(name) = '#rails55') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test55' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails55"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'rerum-incidunt-54' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 103], ["blog_id", 1], ["body", "Molestiae error fugit debitis ducimus quo perferendis aliquid. Harum nemo doloremque suscipit esse consequatur. In laborum perferendis veritatis laudantium ut. Nisi suscipit optio molestias aliquid maiores architecto. Veritatis vero quas voluptas dolor provident. Vel a voluptatem repellendus qui officiis non."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Ex ipsam."], ["published", true], ["slug", "rerum-incidunt-54"], ["title", "Voluptatem et amet consequuntur autem quia fugit."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test56' OR lower(name) = 'rspec56' OR lower(name) = 'ruby56' OR lower(name) = '#rails56') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test56"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails56"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'asperiores-non-55' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 104], ["blog_id", 1], ["body", "Corrupti et earum magni nam quae fuga. Enim eum est eos sapiente illo perspiciatis. Occaecati id aliquam totam deleniti pariatur. Qui dolor quis sit blanditiis. Eius voluptates qui reprehenderit minus. Dolores rerum non aspernatur blanditiis. Aspernatur aut ducimus totam placeat."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Eligendi in hic officia."], ["published", true], ["slug", "asperiores-non-55"], ["title", "Voluptatem magni deserunt mollitia."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test57' OR lower(name) = 'rspec57' OR lower(name) = 'ruby57' OR lower(name) = '#rails57') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test57"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec57"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby57"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails57"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'non-dignissimos-56' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 105], ["blog_id", 1], ["body", "Maxime voluptate aut ex et quibusdam. Eum quasi aut maiores blanditiis ut. Dolores neque aspernatur sapiente. Et voluptatibus sapiente ducimus recusandae accusamus est enim. Sed dolores numquam."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Ipsa ut laboriosam hic esse."], ["published", false], ["slug", "non-dignissimos-56"], ["title", "Assumenda voluptate blanditiis numquam."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test58' OR lower(name) = 'rspec58' OR lower(name) = 'ruby58' OR lower(name) = '#rails58') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails58"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ut-blanditiis-57' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 106], ["blog_id", 1], ["body", "Dicta dolores unde. Est rem quis ratione assumenda quas. Repellat nulla quo autem. Molestiae adipisci corporis quae. Quis optio ut. Vel praesentium aut qui. Sunt ut adipisci quas."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Doloribus sit quia perferendis ullam."], ["published", false], ["slug", "ut-blanditiis-57"], ["title", "Ea quo sint praesentium aspernatur perferendis quibusdam."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test59' OR lower(name) = 'rspec59' OR lower(name) = 'ruby59' OR lower(name) = '#rails59') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec59"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby59"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails59"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eos-laboriosam-58' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 107], ["blog_id", 1], ["body", "Autem sit delectus explicabo nihil voluptatem sint odio. Aut ad perspiciatis beatae consequatur consequatur illo. Aliquid totam ullam eos. Fuga nulla ea non. Et quasi necessitatibus."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Placeat assumenda aspernatur."], ["published", false], ["slug", "eos-laboriosam-58"], ["title", "Dolorem sint repudiandae."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test60' OR lower(name) = 'rspec60' OR lower(name) = 'ruby60' OR lower(name) = '#rails60') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec60"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails60"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 't'  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 108], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["description", "Earum nobis nesciunt aut. Sed qui quod laudantium beatae culpa necessitatibus omnis. Rerum optio non quibusdam temporibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolorum alias."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'unde-mollitia-59' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 109], ["blog_id", 1], ["body", "Facere sed sint nostrum omnis voluptatem. At pariatur repudiandae voluptates recusandae numquam. Neque quia ea voluptas. Repudiandae et quia. Pariatur labore ut optio est eligendi doloribus."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Consequatur."], ["published", true], ["slug", "unde-mollitia-59"], ["title", "Alias numquam dicta porro nobis quia perspiciatis modi."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test61' OR lower(name) = 'rspec61' OR lower(name) = 'ruby61' OR lower(name) = '#rails61') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails61"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sit-maiores-60' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 110], ["blog_id", 1], ["body", "Magnam et voluptates dolor et reprehenderit ut facilis. Repellat ipsam ut fugit. Nostrum sed ut ex quia. Et eum dolorem excepturi. Voluptas vitae quae."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Et."], ["published", true], ["slug", "sit-maiores-60"], ["title", "Quasi eum voluptas enim iure quia architecto."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test62' OR lower(name) = 'rspec62' OR lower(name) = 'ruby62' OR lower(name) = '#rails62') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test62' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails62"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'rerum-incidunt-61' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 111], ["blog_id", 1], ["body", "Molestiae error fugit debitis ducimus quo perferendis aliquid. Harum nemo doloremque suscipit esse consequatur. In laborum perferendis veritatis laudantium ut. Nisi suscipit optio molestias aliquid maiores architecto. Veritatis vero quas voluptas dolor provident. Vel a voluptatem repellendus qui officiis non."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Ex ipsam."], ["published", true], ["slug", "rerum-incidunt-61"], ["title", "Voluptatem et amet consequuntur autem quia fugit."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test63' OR lower(name) = 'rspec63' OR lower(name) = 'ruby63' OR lower(name) = '#rails63') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test63"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec63"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby63"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails63' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails63"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'asperiores-non-62' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 112], ["blog_id", 1], ["body", "Corrupti et earum magni nam quae fuga. Enim eum est eos sapiente illo perspiciatis. Occaecati id aliquam totam deleniti pariatur. Qui dolor quis sit blanditiis. Eius voluptates qui reprehenderit minus. Dolores rerum non aspernatur blanditiis. Aspernatur aut ducimus totam placeat."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Eligendi in hic officia."], ["published", false], ["slug", "asperiores-non-62"], ["title", "Voluptatem magni deserunt mollitia."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test64' OR lower(name) = 'rspec64' OR lower(name) = 'ruby64' OR lower(name) = '#rails64') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test64"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails64"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'non-dignissimos-63' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 113], ["blog_id", 1], ["body", "Maxime voluptate aut ex et quibusdam. Eum quasi aut maiores blanditiis ut. Dolores neque aspernatur sapiente. Et voluptatibus sapiente ducimus recusandae accusamus est enim. Sed dolores numquam."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Ipsa ut laboriosam hic esse."], ["published", false], ["slug", "non-dignissimos-63"], ["title", "Assumenda voluptate blanditiis numquam."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test65' OR lower(name) = 'rspec65' OR lower(name) = 'ruby65' OR lower(name) = '#rails65') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails65"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ut-blanditiis-64' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 114], ["blog_id", 1], ["body", "Dicta dolores unde. Est rem quis ratione assumenda quas. Repellat nulla quo autem. Molestiae adipisci corporis quae. Quis optio ut. Vel praesentium aut qui. Sunt ut adipisci quas."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Doloribus sit quia perferendis ullam."], ["published", false], ["slug", "ut-blanditiis-64"], ["title", "Ea quo sint praesentium aspernatur perferendis quibusdam."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test66' OR lower(name) = 'rspec66' OR lower(name) = 'ruby66' OR lower(name) = '#rails66') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails66"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f'  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 115], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["description", "Earum nobis nesciunt aut. Sed qui quod laudantium beatae culpa necessitatibus omnis. Rerum optio non quibusdam temporibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Mollitia eum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'unde-mollitia-65' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 116], ["blog_id", 1], ["body", "Facere sed sint nostrum omnis voluptatem. At pariatur repudiandae voluptates recusandae numquam. Neque quia ea voluptas. Repudiandae et quia. Pariatur labore ut optio est eligendi doloribus."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Consequatur."], ["published", true], ["slug", "unde-mollitia-65"], ["title", "Alias numquam dicta porro nobis quia perspiciatis modi."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test67' OR lower(name) = 'rspec67' OR lower(name) = 'ruby67' OR lower(name) = '#rails67') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails67"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sit-maiores-66' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 117], ["blog_id", 1], ["body", "Magnam et voluptates dolor et reprehenderit ut facilis. Repellat ipsam ut fugit. Nostrum sed ut ex quia. Et eum dolorem excepturi. Voluptas vitae quae."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Et."], ["published", true], ["slug", "sit-maiores-66"], ["title", "Quasi eum voluptas enim iure quia architecto."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test68' OR lower(name) = 'rspec68' OR lower(name) = 'ruby68' OR lower(name) = '#rails68') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test68' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails68"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'rerum-incidunt-67' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 118], ["blog_id", 1], ["body", "Molestiae error fugit debitis ducimus quo perferendis aliquid. Harum nemo doloremque suscipit esse consequatur. In laborum perferendis veritatis laudantium ut. Nisi suscipit optio molestias aliquid maiores architecto. Veritatis vero quas voluptas dolor provident. Vel a voluptatem repellendus qui officiis non."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Ex ipsam."], ["published", true], ["slug", "rerum-incidunt-67"], ["title", "Voluptatem et amet consequuntur autem quia fugit."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test69' OR lower(name) = 'rspec69' OR lower(name) = 'ruby69' OR lower(name) = '#rails69') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails69"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'asperiores-non-68' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 119], ["blog_id", 1], ["body", "Corrupti et earum magni nam quae fuga. Enim eum est eos sapiente illo perspiciatis. Occaecati id aliquam totam deleniti pariatur. Qui dolor quis sit blanditiis. Eius voluptates qui reprehenderit minus. Dolores rerum non aspernatur blanditiis. Aspernatur aut ducimus totam placeat."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Eligendi in hic officia."], ["published", true], ["slug", "asperiores-non-68"], ["title", "Voluptatem magni deserunt mollitia."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test70' OR lower(name) = 'rspec70' OR lower(name) = 'ruby70' OR lower(name) = '#rails70') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test70' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails70"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'non-dignissimos-69' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 120], ["blog_id", 1], ["body", "Maxime voluptate aut ex et quibusdam. Eum quasi aut maiores blanditiis ut. Dolores neque aspernatur sapiente. Et voluptatibus sapiente ducimus recusandae accusamus est enim. Sed dolores numquam."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Ipsa ut laboriosam hic esse."], ["published", true], ["slug", "non-dignissimos-69"], ["title", "Assumenda voluptate blanditiis numquam."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test71' OR lower(name) = 'rspec71' OR lower(name) = 'ruby71' OR lower(name) = '#rails71') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails71"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ut-blanditiis-70' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 121], ["blog_id", 1], ["body", "Dicta dolores unde. Est rem quis ratione assumenda quas. Repellat nulla quo autem. Molestiae adipisci corporis quae. Quis optio ut. Vel praesentium aut qui. Sunt ut adipisci quas."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Doloribus sit quia perferendis ullam."], ["published", true], ["slug", "ut-blanditiis-70"], ["title", "Ea quo sint praesentium aspernatur perferendis quibusdam."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test72' OR lower(name) = 'rspec72' OR lower(name) = 'ruby72' OR lower(name) = '#rails72') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails72"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eos-laboriosam-71' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 122], ["blog_id", 1], ["body", "Autem sit delectus explicabo nihil voluptatem sint odio. Aut ad perspiciatis beatae consequatur consequatur illo. Aliquid totam ullam eos. Fuga nulla ea non. Et quasi necessitatibus."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Placeat assumenda aspernatur."], ["published", true], ["slug", "eos-laboriosam-71"], ["title", "Dolorem sint repudiandae."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test73' OR lower(name) = 'rspec73' OR lower(name) = 'ruby73' OR lower(name) = '#rails73') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails73"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'cumque-est-72' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 123], ["blog_id", 1], ["body", "Reprehenderit porro dolorum. Recusandae dolores consequuntur. Laboriosam corporis doloribus unde numquam enim vero voluptates. Et veritatis sunt explicabo. Voluptatum voluptas rerum vel. Occaecati debitis a consequatur sed est ducimus ab."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Reiciendis facilis fugiat aliquid mollitia."], ["published", true], ["slug", "cumque-est-72"], ["title", "Atque omnis dicta ad facere magni corporis."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test74' OR lower(name) = 'rspec74' OR lower(name) = 'ruby74' OR lower(name) = '#rails74') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby74"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails74"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-veritatis-73' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 124], ["blog_id", 1], ["body", "Molestias in a deleniti. Ipsum rerum optio. At laboriosam dolore nisi voluptatem. Iure quaerat tempora. Velit sit quia. Aspernatur repudiandae accusamus cumque aliquid ut voluptates placeat."], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["excerpt", "Aut eveniet aspernatur."], ["published", true], ["slug", "qui-veritatis-73"], ["title", "Dolores iste doloremque molestias non ab sit assumenda."], ["updated_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test75' OR lower(name) = 'rspec75' OR lower(name) = 'ruby75' OR lower(name) = '#rails75') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails75"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'iure-sit-74' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 125], ["blog_id", 1], ["body", "Expedita ut eos est. Sed vel vel ratione aut doloribus. Ipsa quia est. Est voluptatum molestiae veritatis repudiandae perferendis repellendus. Tenetur deleniti sit qui."], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["excerpt", "Occaecati quia soluta itaque."], ["published", true], ["slug", "iure-sit-74"], ["title", "Possimus placeat excepturi non fugiat."], ["updated_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test76' OR lower(name) = 'rspec76' OR lower(name) = 'ruby76' OR lower(name) = '#rails76') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails76"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'minus-accusamus-75' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 126], ["blog_id", 1], ["body", "Enim maxime consequatur voluptate aut laboriosam quasi enim. Voluptas sed accusantium. Alias voluptatem qui. Cupiditate et sit. Ut et magni et sint rerum atque."], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["excerpt", "Facilis."], ["published", true], ["slug", "minus-accusamus-75"], ["title", "Cupiditate sit excepturi perspiciatis."], ["updated_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eos-sunt-76' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 127], ["blog_id", 1], ["body", "Dignissimos possimus a voluptas. Ab id eum temporibus. Autem quam inventore. Ut est et vitae et. Commodi quibusdam nobis magni velit. In aut dignissimos magnam temporibus perspiciatis illum sequi."], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["excerpt", "Praesentium quia animi ratione."], ["published", true], ["slug", "eos-sunt-76"], ["title", "Atque excepturi recusandae iure sed."], ["updated_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_213cc32 ON posts_taggings_213cc32.taggable_id = almanac_posts.id AND posts_taggings_213cc32.taggable_type = 'Almanac::Post' AND posts_taggings_213cc32.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 128], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["description", "Porro nihil doloremque saepe hic. Consequatur accusamus repudiandae. Tenetur iure et alias blanditiis adipisci."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quod dicta qui possimus eius eum nobis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-earum-77' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 129], ["blog_id", 1], ["body", "Ad sit deserunt. Consequatur repellat aliquid sint quidem enim. Et similique architecto ratione dolores et. Atque quo adipisci architecto ea similique qui corporis. Voluptas et a deserunt nihil reprehenderit expedita."], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["excerpt", "Ex error aut sed."], ["published", true], ["slug", "aut-earum-77"], ["title", "Nihil sed incidunt culpa autem vitae."], ["updated_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test77' OR lower(name) = 'rspec77' OR lower(name) = 'ruby77' OR lower(name) = '#rails77') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test77' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test77"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec77"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby77"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails77"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ex-voluptatem-78' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 130], ["blog_id", 1], ["body", "Ea voluptatem sit sit eaque beatae. Nemo nam nisi et enim quisquam sed esse. Ea ut numquam doloremque repudiandae. Aperiam eveniet sapiente. Soluta numquam illum animi cupiditate sunt voluptas nihil."], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["excerpt", "Debitis alias ratione."], ["published", true], ["slug", "ex-voluptatem-78"], ["title", "Sunt et praesentium perferendis aperiam earum culpa."], ["updated_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test78' OR lower(name) = 'rspec78' OR lower(name) = 'ruby78' OR lower(name) = '#rails78') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test78' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test78"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec78"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby78"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails78"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nulla-cum-79' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 131], ["blog_id", 1], ["body", "Alias quaerat sit. Et nihil occaecati distinctio quia exercitationem explicabo. Non mollitia aperiam suscipit modi. Est repudiandae deserunt qui dolor sequi. Illum est quasi."], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["excerpt", "Rem voluptate."], ["published", true], ["slug", "nulla-cum-79"], ["title", "Dolores et ipsum architecto et fugiat."], ["updated_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test79' OR lower(name) = 'rspec79' OR lower(name) = 'ruby79' OR lower(name) = '#rails79') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails79"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (38.8ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'culpa-earum-80' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 132], ["blog_id", 1], ["body", "Velit ratione expedita omnis delectus iusto voluptatibus. Assumenda quis molestiae voluptas neque labore quas quaerat. Ducimus est ab explicabo magnam earum. Nihil est architecto velit. Quod pariatur sed aut. Temporibus est iure nemo natus quidem sunt."], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["excerpt", "Voluptas possimus ea."], ["published", true], ["slug", "culpa-earum-80"], ["title", "Ut dolores nisi qui quia voluptates."], ["updated_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test80' OR lower(name) = 'rspec80' OR lower(name) = 'ruby80' OR lower(name) = '#rails80') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test80"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec80"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby80"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails80"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sunt-ipsam-81' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 133], ["blog_id", 1], ["body", "Aliquam id dignissimos recusandae. Dolorem beatae unde soluta quibusdam totam fugiat. Tenetur a ipsam possimus qui distinctio molestias voluptatem. Error et dolores qui. Omnis occaecati a. Qui aperiam eos et recusandae aut ut aut."], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["excerpt", "Est voluptatibus."], ["published", true], ["slug", "sunt-ipsam-81"], ["title", "Autem quo voluptas et."], ["updated_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test81' OR lower(name) = 'rspec81' OR lower(name) = 'ruby81' OR lower(name) = '#rails81') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test81"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec81"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby81"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails81"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-et-82' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 134], ["blog_id", 1], ["body", "Quam voluptas vel dicta. Qui nemo ad nostrum velit. Sed voluptatum qui soluta labore et atque itaque. Suscipit sit in maiores. Velit modi neque magnam natus amet illo harum. Consequuntur qui occaecati rerum in molestiae fugit."], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["excerpt", "Tempore non dolor velit necessitatibus hic."], ["published", true], ["slug", "et-et-82"], ["title", "Quibusdam consequatur voluptatem sequi voluptas numquam necessitatibus natus."], ["updated_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test82' OR lower(name) = 'rspec82' OR lower(name) = 'ruby82' OR lower(name) = '#rails82') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test82"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec82"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby82"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails82"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-non-83' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 135], ["blog_id", 1], ["body", "Necessitatibus natus quidem id qui fuga nulla beatae. Alias enim impedit praesentium et omnis et magni. Libero voluptatibus asperiores nesciunt aliquid quo molestias. Et sint aperiam dolor quisquam fugiat cum eveniet. Vero et voluptate voluptas consequatur possimus tenetur."], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["excerpt", "Mollitia est est accusamus aut."], ["published", true], ["slug", "et-non-83"], ["title", "Quia incidunt tenetur inventore eaque aut."], ["updated_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test83' OR lower(name) = 'rspec83' OR lower(name) = 'ruby83' OR lower(name) = '#rails83') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails83"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'officiis-nulla-84' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 136], ["blog_id", 1], ["body", "Sint eaque blanditiis deleniti consequatur. Magnam quaerat dolores voluptatem similique et. Eius culpa illum. Voluptas eos voluptatum omnis. Minima laudantium fuga. Doloribus ut tempora. In neque quisquam minima modi."], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["excerpt", "Quos atque aliquid vitae."], ["published", true], ["slug", "officiis-nulla-84"], ["title", "Eum nihil doloribus quis voluptatem laboriosam animi."], ["updated_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test84' OR lower(name) = 'rspec84' OR lower(name) = 'ruby84' OR lower(name) = '#rails84') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails84"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dignissimos-non-85' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 137], ["blog_id", 1], ["body", "Tenetur non nemo expedita a perspiciatis. Autem et exercitationem provident soluta. Illo expedita laborum ab libero et dolores. Sed repudiandae quia voluptates consequatur sit quod aperiam. Et voluptatem repudiandae similique ut. Est consequatur deleniti odio saepe."], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["excerpt", "Nihil."], ["published", true], ["slug", "dignissimos-non-85"], ["title", "Et distinctio et qui unde."], ["updated_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test85' OR lower(name) = 'rspec85' OR lower(name) = 'ruby85' OR lower(name) = '#rails85') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails85"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'molestiae-et-86' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 138], ["blog_id", 1], ["body", "Vitae nihil cupiditate et ipsam. Ut qui et velit ut quasi. In quas officia optio error. Labore recusandae vero deleniti est consequatur enim velit. Quod eius iure."], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["excerpt", "Voluptates quis."], ["published", true], ["slug", "molestiae-et-86"], ["title", "Rem laboriosam est quis esse."], ["updated_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test86' OR lower(name) = 'rspec86' OR lower(name) = 'ruby86' OR lower(name) = '#rails86') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test86"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec86"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby86"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails86"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-placeat-87' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 139], ["blog_id", 1], ["body", "Ut doloribus dolor excepturi neque et voluptates. Alias corrupti in. Dolor quia rerum ullam culpa fuga iusto. Tenetur neque rerum voluptatem soluta. Explicabo voluptatem beatae nemo. Cum praesentium est quisquam et."], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["excerpt", "Omnis ipsam incidunt architecto ad aut."], ["published", false], ["slug", "et-placeat-87"], ["title", "Voluptatem velit magnam hic nostrum sit."], ["updated_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test87' OR lower(name) = 'rspec87' OR lower(name) = 'ruby87' OR lower(name) = '#rails87') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test87' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby87' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails87"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 42 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 42], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 43 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 43], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 44 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 44], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 45 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 45], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'omnis-quaerat-88' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 140], ["blog_id", 1], ["body", "Et est voluptas aperiam iure voluptas tenetur ut. Aut dicta blanditiis quia corporis saepe delectus. Voluptatibus totam aspernatur molestiae. Aut sed at. Unde atque incidunt a accusantium ut veniam. Dolorem modi aut provident non consequatur vel. Vero unde numquam voluptatem."], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["excerpt", "Aut."], ["published", false], ["slug", "omnis-quaerat-88"], ["title", "Architecto sit quisquam molestias velit officia et."], ["updated_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test88' OR lower(name) = 'rspec88' OR lower(name) = 'ruby88' OR lower(name) = '#rails88') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails88"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 46 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 46], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 47 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 47], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 48 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 48], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 49 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["tag_id", 49], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_fecfe05 ON posts_taggings_fecfe05.taggable_id = almanac_posts.id AND posts_taggings_fecfe05.taggable_type = 'Almanac::Post' AND posts_taggings_fecfe05.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 141], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["description", "Nesciunt officia repellat voluptas nulla ut. Deserunt velit porro est quas in. Id atque sint assumenda. Sit dolorum nulla amet minus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Non incidunt omnis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 143], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00], ["description", "Iure ad architecto. Molestiae temporibus enim officiis. Molestiae nihil dicta."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Pariatur labore ut optio est eligendi."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:37:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (0.5ms) rollback transaction Connecting to database specified by database.yml  (1.1ms) DELETE FROM "users";  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';  (1.2ms) DELETE FROM "almanac_posts";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_posts';  (1.0ms) DELETE FROM "almanac_images";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_images';  (1.1ms) DELETE FROM "tags";  (0.1ms) DELETE FROM sqlite_sequence where name = 'tags';  (0.7ms) DELETE FROM "taggings";  (0.2ms) DELETE FROM sqlite_sequence where name = 'taggings';  (0.6ms) DELETE FROM "almanac_comments";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_comments';  (1.0ms) DELETE FROM "almanac_blogs";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_blogs';  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (1.6ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'brigitte_kohler@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "brigitte_kohler@example.net"], ["encrypted_password", "$2a$04$flSDBPUYBmoASP3Q/BH24upZgw7PdcxTdRX1z8u958LRndzt47mc2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00], ["description", "Qui quo qui temporibus est. Ex et omnis ipsa sit. Ipsam velit expedita nesciunt aut consequatur accusamus impedit. Et voluptatum nam voluptas fuga sint officia. Optio minima minus aperiam laboriosam quidem sint necessitatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aut deserunt voluptatibus facilis unde doloribus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Repudiandae officiis magni rem necessitatibus expedita quos. Corporis commodi non unde. In qui et veritatis aliquid aut quas. Iste enim corporis nostrum dolores autem doloremque consequatur.", "author_id"=>"2"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Rendered /Users/vasinov/dev/almanac/app/views/almanac/blogs/edit.html.haml within layouts/almanac/application (0.6ms) Completed 200 OK in 21ms (Views: 13.8ms | ActiveRecord: 0.3ms)  (0.6ms) rollback transaction  (0.3ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mohamed.friesen@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mohamed.friesen@example.com"], ["encrypted_password", "$2a$04$E7lRRTg8DLcIi8S17.wUe.Q201IG4NHz99sFdaxnKv/JTpHhY2Ej."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 3], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00], ["description", "Dolor delectus blanditiis et vero labore eum. Eos magnam et eligendi. Laborum laudantium numquam aspernatur et quod non. Nulla numquam modi natus occaecati. Dolor nulla sed sit consectetur consequatur est."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "In id nam nesciunt ut."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Tempora sed aperiam. Debitis dolorem cum et. Incidunt dicta cum. Enim quas qui nam laudantium delectus. Aut hic reprehenderit aspernatur.", "author_id"=>"4"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 1.4ms | ActiveRecord: 0.2ms) Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'brigitte_kohler@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "brigitte_kohler@example.net"], ["encrypted_password", "$2a$04$hOEkP0LrCJkkj4ybDM9.SOnqYmb1/8Ajgj9J6EOlvAAdN/FGrMtSm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 5], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00], ["description", "Qui quo qui temporibus est. Ex et omnis ipsa sit. Ipsam velit expedita nesciunt aut consequatur accusamus impedit. Et voluptatum nam voluptas fuga sint officia. Optio minima minus aperiam laboriosam quidem sint necessitatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aut deserunt voluptatibus facilis unde doloribus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Necessitatibus eaque voluptate est repellat ut occaecati.", "description"=>"Provident autem voluptates non qui quo. Nobis debitis saepe deserunt. Nemo nulla vitae molestiae. Quibusdam et nemo nam. Doloremque ullam voluptatem itaque.", "author_id"=>"6"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Necessitatibus eaque voluptate est repellat ut occaecati.', "description" = 'Provident autem voluptates non qui quo. Nobis debitis saepe deserunt. Nemo nulla vitae molestiae. Quibusdam et nemo nam. Doloremque ullam voluptatem itaque.', "author_id" = 6, "updated_at" = '2012-12-28 04:40:15.729840' WHERE "almanac_blogs"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 6ms (ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'felipe@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "felipe@example.com"], ["encrypted_password", "$2a$04$DwX2zTsRaxYkqvbWez0OQuT8CWV5ZVUSt2qK36jxh6hEK1Sx6tyw."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 7], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00], ["description", "Tenetur ullam non et exercitationem. Dignissimos esse iste libero hic recusandae. Amet voluptas rerum illo est sunt vel quia. Natus voluptatem eum accusantium exercitationem amet. Quia voluptatem debitis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Velit similique."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Testz", "description"=>"Est rem necessitatibus iusto nihil. Saepe consequatur vero et occaecati nihil. Sed est repudiandae sint iusto.", "author_id"=>"8"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Testz', "description" = 'Est rem necessitatibus iusto nihil. Saepe consequatur vero et occaecati nihil. Sed est repudiandae sint iusto.', "author_id" = 8, "updated_at" = '2012-12-28 04:40:15.747323' WHERE "almanac_blogs"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 5ms (ActiveRecord: 0.3ms) Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'brigitte_kohler@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "brigitte_kohler@example.net"], ["encrypted_password", "$2a$04$avmwjVcOVPTvpBjF0wzmcubpN1IQSif3N88XyW4SDjYpXl7kzFaVy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Ratione minima inventore qui sunt et ea. Qui quo qui temporibus est. Ex et omnis ipsa sit.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 8ms (Views: 2.3ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'vicenta@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "vicenta@example.net"], ["encrypted_password", "$2a$04$tZB5WFU9yypWFVLAyVoMAuYo/xp7ADJ3blfXqBl.grDvLrqi.aWFW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"  Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Est nisi ut. Alias blanditiis aut et fuga sunt aspernatur. Mollitia consectetur accusantium.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 1.4ms | ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"   (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'brigitte_kohler@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "brigitte_kohler@example.net"], ["encrypted_password", "$2a$04$F3OTMb0aX721FTWKDwzpw.Y9EpIi8gUj4oLlMtV3qr0QiYBAayDAK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Aut deserunt voluptatibus facilis unde doloribus.", "description"=>"Qui quo qui temporibus est. Ex et omnis ipsa sit. Ipsam velit expedita nesciunt aut consequatur accusamus impedit. Et voluptatum nam voluptas fuga sint officia. Optio minima minus aperiam laboriosam quidem sint necessitatibus.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00], ["description", "Qui quo qui temporibus est. Ex et omnis ipsa sit. Ipsam velit expedita nesciunt aut consequatur accusamus impedit. Et voluptatum nam voluptas fuga sint officia. Optio minima minus aperiam laboriosam quidem sint necessitatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aut deserunt voluptatibus facilis unde doloribus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 6ms (ActiveRecord: 0.8ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'citlalli.collins@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "citlalli.collins@example.com"], ["encrypted_password", "$2a$04$zn1VAY2GBY0vwNExIgAww.bfFbF50IEilAQrKUb9LyKkQH.NlVWXq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"  Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Tempora non.", "description"=>"Id sit nisi cumque. Quis accusantium molestias voluptate. Labore numquam voluptatibus porro. Ut magni neque fugiat tenetur non. Assumenda ratione sunt deserunt quis.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00], ["description", "Id sit nisi cumque. Quis accusantium molestias voluptate. Labore numquam voluptatibus porro. Ut magni neque fugiat tenetur non. Assumenda ratione sunt deserunt quis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Tempora non."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 6ms (ActiveRecord: 0.8ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"   (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'brigitte_kohler@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "brigitte_kohler@example.net"], ["encrypted_password", "$2a$04$BRj9HfBuZLy2mRpbxuJqFeclsIbAb79pPCeBSxtvZ0.pWcO.X1.Ue"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 9], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00], ["description", "Qui quo qui temporibus est. Ex et omnis ipsa sit. Ipsam velit expedita nesciunt aut consequatur accusamus impedit. Et voluptatum nam voluptas fuga sint officia. Optio minima minus aperiam laboriosam quidem sint necessitatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aut deserunt voluptatibus facilis unde doloribus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'amet-id-1' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 10], ["blog_id", 1], ["body", "Sed quod et molestiae. Non corporis ratione eum unde autem dolorem. Occaecati molestiae esse. Vero deserunt et ipsum earum aut totam. Veniam sed magnam vitae. Eos nam aliquam non dolor dicta."], ["created_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00], ["excerpt", "Facilis."], ["published", true], ["slug", "amet-id-1"], ["title", "Necessitatibus eaque voluptate est repellat ut occaecati expedita."], ["updated_at", Fri, 28 Dec 2012 04:40:15 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test1' OR lower(name) = 'rspec1' OR lower(name) = 'ruby1' OR lower(name) = '#rails1') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec1"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails1"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "arthur.vonrueden@example.com"], ["author_name", "Beverly Price"], ["body", "Magnam et possimus et ad porro recusandae dolores."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "era.gleichner@example.net"], ["author_name", "Carroll Reichel"], ["body", "Optio aspernatur rerum quis est laudantium inventore dolore."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "esther@example.net"], ["author_name", "Johanna Borer"], ["body", "Soluta qui qui autem consequatur veritatis molestias praesentium. Quisquam voluptas dicta. Sed occaecati voluptate velit qui a."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "royal.schumm@example.com"], ["author_name", "Linnea Schuppe"], ["body", "Nihil voluptatem ut libero aliquam. Sapiente et quasi voluptatem neque adipisci velit voluptates. Ipsum temporibus non beatae."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "jaleel.kshlerin@example.net"], ["author_name", "Rudolph Lowe PhD"], ["body", "Esse excepturi et reprehenderit et nisi. Quae velit facilis magnam aliquid praesentium. Officiis in assumenda suscipit tenetur repellat."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "gerardo.kunde@example.com"], ["author_name", "Larue Farrell"], ["body", "Rem sit cum doloremque illo et nesciunt."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "anais.frami@example.com"], ["author_name", "Louisa Zulauf"], ["body", "Officia aut reprehenderit magni alias aut voluptatem voluptate."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "damon.bahringer@example.com"], ["author_name", "Reynold Herzog"], ["body", "Rerum facilis architecto."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "josue_mann@example.net"], ["author_name", "Miss Myrtice Wisoky"], ["body", "Nihil dolor iste modi. Rem iste illo dolorem fugiat hic quam et. Inventore perferendis tempore."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "elisa_reinger@example.org"], ["author_name", "Jimmie Klocko"], ["body", "Rem maiores ipsa fugiat reiciendis perferendis aut sed. Dicta sunt occaecati accusantium. Aut laudantium aliquid."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "vicenta@example.org"], ["author_name", "Amy Ziemann"], ["body", "Distinctio autem et facere nesciunt quasi tenetur recusandae. Repellendus quae quas et similique debitis natus."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "dorcas@example.org"], ["author_name", "Lula Hahn PhD"], ["body", "Quisquam illum qui et non vitae autem quae. Cupiditate fugit reprehenderit repellendus eos occaecati. Itaque ut nam enim illo unde."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "camren@example.net"], ["author_name", "Miss Everardo Lind"], ["body", "Est animi debitis cupiditate earum error quia officiis. Velit nisi aliquam qui."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "darryl@example.org"], ["author_name", "Stevie MacGyver"], ["body", "Iusto in cupiditate eius qui aspernatur. Nobis tempore vitae quo voluptatem aut qui. Dolores in iusto."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "gerry@example.com"], ["author_name", "Jakob Goyette"], ["body", "Libero aliquid consequatur qui. Modi et reiciendis."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'beatrice@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "beatrice@example.org"], ["encrypted_password", "$2a$04$rkpSNlQwxZa09/c2DsDZGeK1jgpClT5eArbVsayjPsUpag3oPVmrS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 11], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["description", "Odit est porro ullam architecto sed. Explicabo earum corporis nam doloremque et magni eveniet. Placeat natus reiciendis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Eos incidunt quae fugiat corporis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sunt-quis-2' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 12], ["blog_id", 1], ["body", "Odio quia dolorum aut rerum quia. Voluptatem magnam qui quo beatae cumque hic nostrum. Aliquam mollitia aliquid consequuntur. Sint a aspernatur qui odio illo qui rerum. Dolor a nulla non. Ut voluptatem id inventore distinctio consequuntur."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["excerpt", "Natus delectus at suscipit."], ["published", true], ["slug", "sunt-quis-2"], ["title", "Ipsa ullam error facilis quisquam ducimus delectus corporis."], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test2' OR lower(name) = 'rspec2' OR lower(name) = 'ruby2' OR lower(name) = '#rails2') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test2"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec2"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby2"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails2"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "maia_jacobson@example.com"], ["author_name", "Nia Graham"], ["body", "Vel dolorum et atque. Et dolores voluptate est maiores."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "allison@example.com"], ["author_name", "Novella Roob II"], ["body", "Quo nihil quae."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "esta_gibson@example.com"], ["author_name", "Stanton Smitham"], ["body", "Animi dolores incidunt explicabo hic quidem. Corrupti dolores nisi cum. Quam cumque possimus dolor expedita occaecati sed ut."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "macey.hudson@example.org"], ["author_name", "Bernice Price"], ["body", "Facere nesciunt ut et modi. Quia quo et aut rerum quibusdam. Mollitia ea expedita."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "louisa@example.net"], ["author_name", "Sienna Reynolds I"], ["body", "Quo cum cupiditate ad. Aperiam atque maiores nostrum. Accusantium ea tenetur."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "bradly@example.org"], ["author_name", "Carter Pfannerstill"], ["body", "Tenetur molestiae officiis occaecati. Aut accusamus aut voluptatum et eos."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "stephanie.rowe@example.org"], ["author_name", "Kip Herzog MD"], ["body", "Facilis totam qui. Ipsa iste nulla nisi eligendi et qui."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "fanny_hermiston@example.net"], ["author_name", "Cristian Crist"], ["body", "Quam rerum voluptatum quasi."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "hailie@example.org"], ["author_name", "Dr. Curt Collins"], ["body", "Voluptas eos molestias explicabo similique omnis laborum."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "rickie@example.com"], ["author_name", "Miss Kayleigh Oberbrunner"], ["body", "Illo iste voluptas. Adipisci unde illo quia. Aut est quasi laboriosam libero dolorem."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "brooklyn.stokes@example.org"], ["author_name", "Jamarcus Runolfsdottir"], ["body", "Aperiam rerum placeat sint sed minus. Consequatur sint dolorem delectus nostrum porro. Temporibus libero omnis deserunt distinctio rerum."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "kitty@example.net"], ["author_name", "Miss Reese Boyer"], ["body", "Quaerat quia enim. Ea officiis laudantium qui repellat est. Enim quisquam ullam eum et."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "chance_brown@example.org"], ["author_name", "Derick Konopelski"], ["body", "Voluptas voluptatem eius necessitatibus. Nihil dolores necessitatibus corporis vero."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "prince.klocko@example.net"], ["author_name", "August Hintz V"], ["body", "Natus facilis itaque qui. Dolor aperiam ut dolorum quam ad."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "dane@example.org"], ["author_name", "Isac Boyle"], ["body", "Omnis aut cum quia voluptas vel quidem. Laboriosam facere reprehenderit quasi nemo."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'damaris_greenfelder@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "damaris_greenfelder@example.com"], ["encrypted_password", "$2a$04$CRbZL703P7Y.C630wdjWpOyTSGJw/fpEIzS0ToXUhlFWeOaK4rc3m"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 13], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["description", "Laudantium officia exercitationem sed magni sint. Corporis mollitia et officiis et minus dolorem. Cum corporis incidunt in eligendi. Pariatur saepe dolores asperiores perspiciatis. Sed omnis deleniti iste ullam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aliquam eos distinctio voluptatibus assumenda est cupiditate."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eligendi-quod-3' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 14], ["blog_id", 1], ["body", "Consequuntur sapiente voluptatem. Labore amet autem occaecati autem ut necessitatibus asperiores. Dolorem voluptas quia eum consequatur distinctio. Inventore unde et facilis sed laboriosam fuga. Aspernatur sed delectus. Earum necessitatibus reiciendis asperiores quo."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["excerpt", "Voluptas sint."], ["published", false], ["slug", "eligendi-quod-3"], ["title", "Dolorem hic eos."], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test3' OR lower(name) = 'rspec3' OR lower(name) = 'ruby3' OR lower(name) = '#rails3') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails3"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quae-sint-4' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 15], ["blog_id", 1], ["body", "Labore cupiditate facilis. Aut fuga blanditiis voluptatum sunt sit at. Ipsum itaque rem consequatur aut. Repudiandae ut sapiente. Excepturi velit ullam debitis repudiandae in perferendis."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["excerpt", "Vel at fugit quis ea."], ["published", false], ["slug", "quae-sint-4"], ["title", "Cumque officiis vitae voluptatum."], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test4' OR lower(name) = 'rspec4' OR lower(name) = 'ruby4' OR lower(name) = '#rails4') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test4' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test4"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec4"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby4"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails4"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolor-voluptas-5' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 16], ["blog_id", 1], ["body", "Ea consequatur voluptas deserunt. Et facere enim quidem. Est sed similique assumenda dolor repudiandae. Beatae impedit laborum. Officiis aut a. Fugiat vero aut nobis eum et nostrum. Vel non nemo quibusdam voluptas."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["excerpt", "Voluptas corrupti tempore laborum."], ["published", false], ["slug", "dolor-voluptas-5"], ["title", "Mollitia exercitationem natus tempore."], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test5' OR lower(name) = 'rspec5' OR lower(name) = 'ruby5' OR lower(name) = '#rails5') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails5"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 10ms (Views: 3.0ms | ActiveRecord: 0.1ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f' ORDER BY written_at DESC, id DESC  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'loren_huel@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "loren_huel@example.net"], ["encrypted_password", "$2a$04$Bz2U76nukOocwy/2gEtdxO2Fpghfm8ktLY6664SZAvBuLF47l8X4u"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 17], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["description", "Nulla ut repellendus reprehenderit quasi dolor aperiam. Ad quia tempore quaerat minus ut et consequatur. Saepe et eum quo. Officiis eveniet officia. Est tempora ut et molestiae debitis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Eligendi tenetur dolore est doloremque."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'id-ipsa-6' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 18], ["blog_id", 1], ["body", "Nostrum aut quia. Voluptates et distinctio ex atque quam. Nisi corporis sed odio. Fugiat aliquid consequatur sunt dolores sit repellat cumque. Tempora dignissimos autem qui. Enim dolores nemo porro quaerat."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["excerpt", "Neque dicta."], ["published", true], ["slug", "id-ipsa-6"], ["title", "Odit qui inventore."], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test6' OR lower(name) = 'rspec6' OR lower(name) = 'ruby6' OR lower(name) = '#rails6') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test6"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec6"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby6"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails6"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'facere-delectus-7' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 19], ["blog_id", 1], ["body", "Magni labore eius molestiae aspernatur inventore illum amet. Quibusdam culpa voluptatem. Ut qui voluptates repellat voluptas. Accusantium qui sed quae eos. Odit alias doloremque ipsam quibusdam rerum quis rerum."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["excerpt", "Enim vero eum non error."], ["published", true], ["slug", "facere-delectus-7"], ["title", "Placeat dicta et sed non veritatis veniam qui."], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test7' OR lower(name) = 'rspec7' OR lower(name) = 'ruby7' OR lower(name) = '#rails7') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test7' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test7"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec7"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby7"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails7"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dicta-reprehenderit-8' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 20], ["blog_id", 1], ["body", "Unde enim error sunt voluptas ut. Ratione blanditiis molestias consectetur tenetur nostrum tempora et. Expedita maxime autem deserunt consequatur delectus eum quos. Sit rem eveniet inventore eaque ab eligendi nihil. Voluptatem suscipit beatae fugiat at non et consequuntur."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["excerpt", "Quod eum eos."], ["published", true], ["slug", "dicta-reprehenderit-8"], ["title", "Veniam molestiae qui."], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test8' OR lower(name) = 'rspec8' OR lower(name) = 'ruby8' OR lower(name) = '#rails8') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test8"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby8"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails8"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.7ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sunt-commodi-9' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 21], ["blog_id", 1], ["body", "Vel molestiae fugiat nihil culpa. Nobis non eos veritatis neque. Error tenetur corrupti illum velit eaque. Molestias cum officiis quo voluptatem. Commodi at nihil officiis libero veniam."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["excerpt", "Illum alias cupiditate nemo."], ["published", true], ["slug", "sunt-commodi-9"], ["title", "Ut sint nihil rerum accusantium."], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test9' OR lower(name) = 'rspec9' OR lower(name) = 'ruby9' OR lower(name) = '#rails9') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test9"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec9"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby9"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails9"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'deserunt-enim-10' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 22], ["blog_id", 1], ["body", "Sint corporis optio sequi deserunt pariatur tempore. Inventore ipsa et neque facilis. Perferendis ut commodi nihil voluptatem fuga maxime. Earum voluptate necessitatibus beatae saepe dolor voluptatibus ea. Quos eum minima id est quasi inventore qui. Laborum sequi ipsa fugiat corrupti ab porro. Aut id occaecati dicta corporis est."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["excerpt", "Qui earum nemo odit voluptas exercitationem."], ["published", true], ["slug", "deserunt-enim-10"], ["title", "Eligendi animi sit."], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test10' OR lower(name) = 'rspec10' OR lower(name) = 'ruby10' OR lower(name) = '#rails10') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test10"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec10"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby10"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails10"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.1ms) Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'keely@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "keely@example.org"], ["encrypted_password", "$2a$04$l1uJhTkgAUd9bUlHU4KTjuZzIV5FUZ.ZYayz88cwG84PTyn3Zuk1u"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 23], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["description", "Sunt illum ut ratione similique. Ipsam amet voluptatem quos. Ratione culpa consectetur eveniet dicta qui eos hic."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Qui illo aliquam cum sequi iure."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 6ms (Views: 1.6ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'brigitte_kohler@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "brigitte_kohler@example.net"], ["encrypted_password", "$2a$04$VPCNSCQAeQNiNRlGKlRIEuYx7z4.gzlsQV8yIUXG8rDBeMvAFmPji"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 24], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["description", "Qui quo qui temporibus est. Ex et omnis ipsa sit. Ipsam velit expedita nesciunt aut consequatur accusamus impedit. Et voluptatum nam voluptas fuga sint officia. Optio minima minus aperiam laboriosam quidem sint necessitatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aut deserunt voluptatibus facilis unde doloribus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"aut-amet-11", "excerpt"=>"Maiores ducimus cumque voluptatem earum explicabo.", "body"=>"Mollitia aliquid distinctio. Occaecati quis et dolor quam consectetur. Exercitationem enim nihil vel. Eius est enim optio incidunt unde. Tempora quia omnis possimus ipsum rerum consectetur similique.", "published"=>true, "tag_list"=>"common,test11,rspec11,ruby11,#rails11", "author_id"=>"25", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-amet-11' LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 16ms (Views: 2.2ms | ActiveRecord: 0.4ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lyla@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "lyla@example.org"], ["encrypted_password", "$2a$04$n.Y4B5leEhATjywGUJ28TuD.TZmJ..r6gatY/XIP5vfejeHbFdwSi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 26], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["description", "Non ratione ut mollitia. Excepturi est et. Sapiente sit dolor ut exercitationem rerum. Quia omnis architecto aut numquam consequatur."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Pariatur iusto dolores numquam ex dolorem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"dolorum-tempore-12", "excerpt"=>"Dolore minus.", "body"=>"Quas impedit sit. Sit dolorem natus ad perferendis quas nesciunt ipsam. Odit voluptatem itaque ea asperiores. Sint illo ipsa eos magnam iusto. Quis quidem voluptatem rem id quas pariatur est.", "published"=>true, "tag_list"=>"common,test12,rspec12,ruby12,#rails12", "author_id"=>"27", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolorum-tempore-12' LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 49ms (Views: 1.5ms | ActiveRecord: 0.5ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'brigitte_kohler@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "brigitte_kohler@example.net"], ["encrypted_password", "$2a$04$EL6q2cmRpkgW/U6PDWcireOczikqTNLbSwmbIxTxzkemObvMLD/De"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 28], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["description", "Qui quo qui temporibus est. Ex et omnis ipsa sit. Ipsam velit expedita nesciunt aut consequatur accusamus impedit. Et voluptatum nam voluptas fuga sint officia. Optio minima minus aperiam laboriosam quidem sint necessitatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aut deserunt voluptatibus facilis unde doloribus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Necessitatibus eaque voluptate est repellat ut occaecati expedita.", "slug"=>"amet-id-13", "excerpt"=>"Facilis.", "body"=>"Sed quod et molestiae. Non corporis ratione eum unde autem dolorem. Occaecati molestiae esse. Vero deserunt et ipsum earum aut totam. Veniam sed magnam vitae. Eos nam aliquam non dolor dicta.", "published"=>true, "tag_list"=>"common,test13,rspec13,ruby13,#rails13", "author_id"=>"29", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'amet-id-13' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Sed quod et molestiae. Non corporis ratione eum unde autem dolorem. Occaecati molestiae esse. Vero deserunt et ipsum earum aut totam. Veniam sed magnam vitae. Eos nam aliquam non dolor dicta."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["excerpt", "Facilis."], ["published", true], ["slug", "amet-id-13"], ["title", "Necessitatibus eaque voluptate est repellat ut occaecati expedita."], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test13' OR lower(name) = 'rspec13' OR lower(name) = 'ruby13' OR lower(name) = '#rails13') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test13"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails13"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 27ms (ActiveRecord: 2.3ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'beverly_price@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "beverly_price@example.net"], ["encrypted_password", "$2a$04$BXdCp4Oro/bMDVAd8bqtxOPvkZrZSxBCQcBbpOVthD66TlzJ6H8.."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 30], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["description", "Dolor nulla sed sit consectetur consequatur est. Tempora sed aperiam. Debitis dolorem cum et. Incidunt dicta cum. Enim quas qui nam laudantium delectus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Nulla numquam modi natus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Aut hic reprehenderit aspernatur.", "slug"=>"sunt-qui-14", "excerpt"=>"Sint illo ipsa eos.", "body"=>"Id repudiandae quaerat aut nobis voluptas. Quia quo pariatur cupiditate minima quis. Iure sit sapiente. Dolorem est harum. Ducimus dolorem corrupti voluptas sint ut labore commodi. Nulla architecto qui accusantium voluptas.", "published"=>true, "tag_list"=>"common,test14,rspec14,ruby14,#rails14", "author_id"=>"31", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sunt-qui-14' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Id repudiandae quaerat aut nobis voluptas. Quia quo pariatur cupiditate minima quis. Iure sit sapiente. Dolorem est harum. Ducimus dolorem corrupti voluptas sint ut labore commodi. Nulla architecto qui accusantium voluptas."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["excerpt", "Sint illo ipsa eos."], ["published", true], ["slug", "sunt-qui-14"], ["title", "Aut hic reprehenderit aspernatur."], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test14' OR lower(name) = 'rspec14' OR lower(name) = 'ruby14' OR lower(name) = '#rails14') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test14"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec14"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby14"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails14"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 28ms (ActiveRecord: 2.3ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'brigitte_kohler@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "brigitte_kohler@example.net"], ["encrypted_password", "$2a$04$Lc5YHr1F9raA7uekhiCtGepOPZCHYO6eqKwrB0JL0tvKk0U9hUrjG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 32], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["description", "Qui quo qui temporibus est. Ex et omnis ipsa sit. Ipsam velit expedita nesciunt aut consequatur accusamus impedit. Et voluptatum nam voluptas fuga sint officia. Optio minima minus aperiam laboriosam quidem sint necessitatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aut deserunt voluptatibus facilis unde doloribus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'amet-id-15' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 33], ["blog_id", 1], ["body", "Sed quod et molestiae. Non corporis ratione eum unde autem dolorem. Occaecati molestiae esse. Vero deserunt et ipsum earum aut totam. Veniam sed magnam vitae. Eos nam aliquam non dolor dicta."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["excerpt", "Facilis."], ["published", true], ["slug", "amet-id-15"], ["title", "Necessitatibus eaque voluptate est repellat ut occaecati expedita."], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test15' OR lower(name) = 'rspec15' OR lower(name) = 'ruby15' OR lower(name) = '#rails15') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test15"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec15"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby15"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails15"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."post_id" = 1 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 32ms (ActiveRecord: 1.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'beverly_price@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "beverly_price@example.net"], ["encrypted_password", "$2a$04$gd68qitRjtql4r8KbCRkyeSibe7qQXsCZXXmht.HuND.F/E5cHf.m"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 34], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["description", "Dolor nulla sed sit consectetur consequatur est. Tempora sed aperiam. Debitis dolorem cum et. Incidunt dicta cum. Enim quas qui nam laudantium delectus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Nulla numquam modi natus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sunt-qui-16' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 35], ["blog_id", 1], ["body", "Id repudiandae quaerat aut nobis voluptas. Quia quo pariatur cupiditate minima quis. Iure sit sapiente. Dolorem est harum. Ducimus dolorem corrupti voluptas sint ut labore commodi. Nulla architecto qui accusantium voluptas."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["excerpt", "Sint illo ipsa eos."], ["published", true], ["slug", "sunt-qui-16"], ["title", "Aut hic reprehenderit aspernatur."], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test16' OR lower(name) = 'rspec16' OR lower(name) = 'ruby16' OR lower(name) = '#rails16') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test16"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec16"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby16"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails16"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_posts" Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."post_id" = 1 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 10ms (ActiveRecord: 0.9ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'brigitte_kohler@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "brigitte_kohler@example.net"], ["encrypted_password", "$2a$04$OlgUiCSKWIKddjQuMOY7XOv2f3D8Gx2YpcOLQH89rlx8BBWAaYmxm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 36], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["description", "Qui quo qui temporibus est. Ex et omnis ipsa sit. Ipsam velit expedita nesciunt aut consequatur accusamus impedit. Et voluptatum nam voluptas fuga sint officia. Optio minima minus aperiam laboriosam quidem sint necessitatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aut deserunt voluptatibus facilis unde doloribus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'amet-id-17' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 37], ["blog_id", 1], ["body", "Sed quod et molestiae. Non corporis ratione eum unde autem dolorem. Occaecati molestiae esse. Vero deserunt et ipsum earum aut totam. Veniam sed magnam vitae. Eos nam aliquam non dolor dicta."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["excerpt", "Facilis."], ["published", true], ["slug", "amet-id-17"], ["title", "Necessitatibus eaque voluptate est repellat ut occaecati expedita."], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test17' OR lower(name) = 'rspec17' OR lower(name) = 'ruby17' OR lower(name) = '#rails17') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test17"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec17"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby17"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails17"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"fuga-sed-18", "excerpt"=>"Voluptatibus.", "body"=>"Occaecati asperiores veniam qui quisquam atque ea quia. Ducimus dolorum quos qui. Rem soluta quo quasi numquam accusamus voluptatem est. Dolor possimus eaque sequi et vel. Ab nihil deserunt asperiores qui.", "published"=>true, "tag_list"=>"common,test18,rspec18,ruby18,#rails18", "author_id"=>"38", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'fuga-sed-18' AND "almanac_posts"."id" != 1) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 14ms (Views: 2.2ms | ActiveRecord: 0.6ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ines_kovacek@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ines_kovacek@example.com"], ["encrypted_password", "$2a$04$Gcnn0.DTAS1uEGbQcVbcdOapXJHaMDKKXmieNvJ67qyV5UQzS6af."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 39], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["description", "Aut iste ad in aliquid. Nemo similique temporibus. Cumque non unde dolore blanditiis qui debitis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Voluptatem aut voluptatem qui."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'cupiditate-dignissimos-19' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 40], ["blog_id", 1], ["body", "Impedit ab sed dolorem consequatur. Rerum qui repudiandae praesentium molestiae nulla quaerat. Sit qui non est. Aperiam ea nemo dolorum voluptate laudantium qui aut. Natus sapiente odio enim molestias."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["excerpt", "Labore dignissimos hic sed enim."], ["published", true], ["slug", "cupiditate-dignissimos-19"], ["title", "Porro id perspiciatis sit rerum praesentium."], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test19' OR lower(name) = 'rspec19' OR lower(name) = 'ruby19' OR lower(name) = '#rails19') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test19"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec19"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby19"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails19"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"possimus-et-20", "excerpt"=>"Odit cumque aut accusantium error.", "body"=>"Dolor occaecati quibusdam delectus ea. Voluptatibus est ut asperiores omnis rerum. Consequuntur doloribus qui et. Quis quia ullam. Quam ut molestiae molestiae est. Rerum quia laudantium.", "published"=>true, "tag_list"=>"common,test20,rspec20,ruby20,#rails20", "author_id"=>"41", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'possimus-et-20' AND "almanac_posts"."id" != 1) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 1.4ms | ActiveRecord: 0.5ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]  (1.3ms) rollback transaction  (0.3ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'brigitte_kohler@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "brigitte_kohler@example.net"], ["encrypted_password", "$2a$04$b7tlYLZpCvcS.nA4QvYmxuSqxhLuqkHyPme5RfAQNpy7mWvtL0.h2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 42], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["description", "Qui quo qui temporibus est. Ex et omnis ipsa sit. Ipsam velit expedita nesciunt aut consequatur accusamus impedit. Et voluptatum nam voluptas fuga sint officia. Optio minima minus aperiam laboriosam quidem sint necessitatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aut deserunt voluptatibus facilis unde doloribus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'amet-id-21' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 43], ["blog_id", 1], ["body", "Sed quod et molestiae. Non corporis ratione eum unde autem dolorem. Occaecati molestiae esse. Vero deserunt et ipsum earum aut totam. Veniam sed magnam vitae. Eos nam aliquam non dolor dicta."], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["excerpt", "Facilis."], ["published", true], ["slug", "amet-id-21"], ["title", "Necessitatibus eaque voluptate est repellat ut occaecati expedita."], ["updated_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test21' OR lower(name) = 'rspec21' OR lower(name) = 'ruby21' OR lower(name) = '#rails21') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test21' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test21"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec21"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby21"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails21"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Consequatur et sed dicta.", "slug"=>"cumque-est-22", "excerpt"=>"Autem earum dolorem animi et.", "body"=>"Ducimus dolorum quos qui. Rem soluta quo quasi numquam accusamus voluptatem est. Dolor possimus eaque sequi et vel. Ab nihil deserunt asperiores qui. Quia aut animi autem quasi id. Et et accusantium amet consequatur aperiam laborum. Ullam minus sunt rerum voluptas pariatur at esse.", "published"=>true, "tag_list"=>"common,test22,rspec22,ruby22,#rails22", "author_id"=>"44", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'cumque-est-22' AND "almanac_posts"."id" != 1) LIMIT 1  (0.1ms) UPDATE "almanac_posts" SET "title" = 'Consequatur et sed dicta.', "slug" = 'cumque-est-22', "excerpt" = 'Autem earum dolorem animi et.', "body" = 'Ducimus dolorum quos qui. Rem soluta quo quasi numquam accusamus voluptatem est. Dolor possimus eaque sequi et vel. Ab nihil deserunt asperiores qui. Quia aut animi autem quasi id. Et et accusantium amet consequatur aperiam laborum. Ullam minus sunt rerum voluptas pariatur at esse.', "author_id" = 44, "updated_at" = '2012-12-28 04:40:16.976431' WHERE "almanac_posts"."id" = 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test22' OR lower(name) = 'rspec22' OR lower(name) = 'ruby22' OR lower(name) = '#rails22') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test22' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test22"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec22"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby22"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails22"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."tagger_type" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."context" = 'tags' AND "taggings"."tag_id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:16 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 31ms (ActiveRecord: 2.7ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'patsy@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "patsy@example.org"], ["encrypted_password", "$2a$04$gbYdIDeRIjm4r8hgyRDpKelgkVGwEvwvZ3fbumlnFJ5WEc3ezs8o2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 45], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["description", "Doloremque non soluta vel. Vero esse ad iure sunt. Libero sed officiis sit quae. Veniam minima repellendus nam possimus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Maiores est ut dolores fugit qui."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eius-eum-23' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 46], ["blog_id", 1], ["body", "Natus sapiente odio enim molestias. Et accusantium asperiores. Aliquid et voluptatem quas sit ipsa. Ducimus aut voluptate quibusdam. Nihil quia maiores veniam."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["excerpt", "Doloremque ea dicta soluta quia ex."], ["published", true], ["slug", "eius-eum-23"], ["title", "Sunt ab sed fugiat fugit totam quidem error."], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test23' OR lower(name) = 'rspec23' OR lower(name) = 'ruby23' OR lower(name) = '#rails23') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test23"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec23"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby23"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails23"]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Testz", "slug"=>"omnis-at-24", "excerpt"=>"Quis.", "body"=>"Fugit voluptas aut eum voluptate aut. Nostrum quo quis eius aliquam voluptas. Maxime dolores reprehenderit sed sint. Doloribus qui illum ut accusantium molestiae ullam. Ex dicta quas laborum. Consequatur eos quae aperiam laborum sapiente optio. Esse omnis sed dolores distinctio.", "published"=>true, "tag_list"=>"common,test24,rspec24,ruby24,#rails24", "author_id"=>"47", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'omnis-at-24' AND "almanac_posts"."id" != 1) LIMIT 1  (0.1ms) UPDATE "almanac_posts" SET "title" = 'Testz', "slug" = 'omnis-at-24', "excerpt" = 'Quis.', "body" = 'Fugit voluptas aut eum voluptate aut. Nostrum quo quis eius aliquam voluptas. Maxime dolores reprehenderit sed sint. Doloribus qui illum ut accusantium molestiae ullam. Ex dicta quas laborum. Consequatur eos quae aperiam laborum sapiente optio. Esse omnis sed dolores distinctio.', "author_id" = 47, "updated_at" = '2012-12-28 04:40:17.074316' WHERE "almanac_posts"."id" = 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test24' OR lower(name) = 'rspec24' OR lower(name) = 'ruby24' OR lower(name) = '#rails24') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test24' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test24"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec24"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby24"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails24"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."tagger_type" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."context" = 'tags' AND "taggings"."tag_id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 33ms (ActiveRecord: 2.8ms) Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'brigitte_kohler@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "brigitte_kohler@example.net"], ["encrypted_password", "$2a$04$ejE1l3IWGyObeNrbaEfhOeCgZaj/kzEnTROq6Ywudmk.DEwlg/w0a"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 48], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["description", "Qui quo qui temporibus est. Ex et omnis ipsa sit. Ipsam velit expedita nesciunt aut consequatur accusamus impedit. Et voluptatum nam voluptas fuga sint officia. Optio minima minus aperiam laboriosam quidem sint necessitatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aut deserunt voluptatibus facilis unde doloribus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 8ms (Views: 2.2ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'citlalli.collins@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "citlalli.collins@example.com"], ["encrypted_password", "$2a$04$MhP1e5uizPWlCFcMWEmX/.3qK7El.SeZJQTIdJ6yLnOS/J8rYpDOO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 49], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["description", "Id sit nisi cumque. Quis accusantium molestias voluptate. Labore numquam voluptatibus porro. Ut magni neque fugiat tenetur non. Assumenda ratione sunt deserunt quis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Tempora non."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'perspiciatis-optio-25' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 50], ["blog_id", 1], ["body", "Aut ab sint aliquam unde. Similique repudiandae blanditiis omnis qui voluptate. Quia omnis architecto aut numquam consequatur. Vitae similique beatae facere rerum aut aut. Qui dolor adipisci doloremque in dignissimos nostrum aut."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["excerpt", "Non ratione."], ["published", true], ["slug", "perspiciatis-optio-25"], ["title", "Nisi et non."], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test25' OR lower(name) = 'rspec25' OR lower(name) = 'ruby25' OR lower(name) = '#rails25') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test25"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec25"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby25"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails25"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'autem-natus-26' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 51], ["blog_id", 1], ["body", "Ullam sunt repudiandae inventore voluptate vel aut. Corporis ducimus accusamus et. Atque ea est. Occaecati facere minus. Unde nisi magnam sint laudantium. Quia ut iusto magni necessitatibus impedit et aut."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["excerpt", "Aut hic."], ["published", true], ["slug", "autem-natus-26"], ["title", "Omnis ut velit."], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test26' OR lower(name) = 'rspec26' OR lower(name) = 'ruby26' OR lower(name) = '#rails26') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test26' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby26"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails26"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'tempora-aut-27' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 52], ["blog_id", 1], ["body", "Aperiam ea nemo dolorum voluptate laudantium qui aut. Natus sapiente odio enim molestias. Et accusantium asperiores. Aliquid et voluptatem quas sit ipsa. Ducimus aut voluptate quibusdam."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["excerpt", "Ut eum et consequuntur voluptatem aut."], ["published", true], ["slug", "tempora-aut-27"], ["title", "Veniam minima repellendus nam possimus."], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test27' OR lower(name) = 'rspec27' OR lower(name) = 'ruby27' OR lower(name) = '#rails27') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails27"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'omnis-at-28' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 53], ["blog_id", 1], ["body", "Fugit voluptas aut eum voluptate aut. Nostrum quo quis eius aliquam voluptas. Maxime dolores reprehenderit sed sint. Doloribus qui illum ut accusantium molestiae ullam. Ex dicta quas laborum. Consequatur eos quae aperiam laborum sapiente optio. Esse omnis sed dolores distinctio."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["excerpt", "Quis."], ["published", true], ["slug", "omnis-at-28"], ["title", "Nihil quia maiores veniam."], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test28' OR lower(name) = 'rspec28' OR lower(name) = 'ruby28' OR lower(name) = '#rails28') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test28"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec28"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby28"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails28"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptate-dignissimos-29' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 54], ["blog_id", 1], ["body", "Omnis atque sunt quo in. Numquam modi voluptates eos quidem cum. Exercitationem expedita corrupti qui molestiae. Dolorum quos sit expedita voluptatem. Reprehenderit sapiente iste eum accusantium. Sit qui eos quia exercitationem."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["excerpt", "Expedita occaecati saepe delectus omnis."], ["published", true], ["slug", "voluptate-dignissimos-29"], ["title", "Ipsum quia nam at."], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test29' OR lower(name) = 'rspec29' OR lower(name) = 'ruby29' OR lower(name) = '#rails29') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test29' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails29"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Parameters: {"tag_name"=>"common"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common') Completed 200 OK in 7ms (Views: 1.5ms | ActiveRecord: 0.2ms) Almanac::Post Load (0.3ms) SELECT "almanac_posts".* FROM "almanac_posts" JOIN taggings posts_taggings_713f5ff ON posts_taggings_713f5ff.taggable_id = almanac_posts.id AND posts_taggings_713f5ff.taggable_type = 'Almanac::Post' AND posts_taggings_713f5ff.tag_id = 1 WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 56], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["description", "Iste explicabo pariatur consequatur voluptatem dolor aut. Dolorem aliquid deleniti. Atque adipisci blanditiis tempore molestiae fugiat. Expedita et animi."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Impedit aut sint quisquam quia ut."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quas-recusandae-30' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 55], ["blog_id", 1], ["body", "Ipsam velit expedita nesciunt aut consequatur accusamus impedit. Et voluptatum nam voluptas fuga sint officia. Optio minima minus aperiam laboriosam quidem sint necessitatibus. Necessitatibus eaque voluptate est repellat ut occaecati expedita. Deleniti cupiditate laborum itaque est. Consequatur et necessitatibus illum tempora error culpa."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["excerpt", "Ipsa error odit nostrum."], ["published", true], ["slug", "quas-recusandae-30"], ["title", "Harum commodi dignissimos."], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test30' OR lower(name) = 'rspec30' OR lower(name) = 'ruby30' OR lower(name) = '#rails30') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails30"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "antonia.carroll@example.net"], ["author_name", "Violette Gutmann"], ["body", "Odio sapiente iure natus enim est."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" ORDER BY id ASC  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 58], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["description", "Natus qui et ad. Delectus et suscipit in architecto expedita molestiae amet. Libero temporibus sed vitae."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et beatae asperiores qui sit iste dolor."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'repellat-minima-31' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 57], ["blog_id", 1], ["body", "Ducimus provident quos sed voluptate sit nostrum. Voluptate ipsum sit temporibus natus. Magni quasi sed deserunt aut. Laudantium et officia aperiam quas et. Voluptas necessitatibus est odit. Voluptatem non sint labore dolorem iure. Accusamus at commodi voluptas dolorem aut."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["excerpt", "Dicta."], ["published", true], ["slug", "repellat-minima-31"], ["title", "Qui voluptatem et commodi consequatur dolore minima illo."], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test31' OR lower(name) = 'rspec31' OR lower(name) = 'ruby31' OR lower(name) = '#rails31') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails31"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 60], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["description", "Voluptas blanditiis placeat. Eligendi facere ex quas unde id. Eveniet saepe soluta ullam dolorem vero."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Architecto ut in."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'totam-autem-32' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 59], ["blog_id", 1], ["body", "Et sed amet corrupti ut aut natus mollitia. Facilis est quo magnam illo velit et. Accusamus vel commodi. Repellat esse repellendus facere possimus ea cumque et. Pariatur et quidem."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["excerpt", "Dignissimos occaecati enim perferendis sit."], ["published", true], ["slug", "totam-autem-32"], ["title", "Omnis sequi sit repudiandae aut accusantium."], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test32' OR lower(name) = 'rspec32' OR lower(name) = 'ruby32' OR lower(name) = '#rails32') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test32"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby32"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails32"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 62], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["description", "Rem aut ut. Vitae et ipsum illo adipisci sequi iure. Possimus fugit maiores necessitatibus. Ipsam quod facilis. Eius quis sequi necessitatibus provident fugiat est."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quod est sed explicabo voluptatem omnis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptates-ducimus-33' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 61], ["blog_id", 1], ["body", "Tempora laboriosam non id magnam perspiciatis doloremque. Ipsum maiores atque. Laborum qui earum in ut incidunt. Sit quo nostrum hic officiis minima ipsum. Totam dolorem et tenetur nostrum est vel. Aut quisquam tempora dolores et accusantium."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["excerpt", "Et ducimus."], ["published", true], ["slug", "voluptates-ducimus-33"], ["title", "Dolorem atque excepturi."], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test33' OR lower(name) = 'rspec33' OR lower(name) = 'ruby33' OR lower(name) = '#rails33') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test33"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec33' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec33"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby33"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails33"]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 64], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["description", "Dolorem facere et. Assumenda voluptas veniam rem nihil. Odio qui optio omnis. Ipsam rerum harum nesciunt minima. Libero temporibus minus quae eum et unde corrupti."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ut aut maiores."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eaque-reiciendis-34' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 63], ["blog_id", 1], ["body", "Porro voluptas rem deserunt. Vitae id possimus. Ut asperiores facilis eaque repellendus aliquam illo. Ratione sapiente qui dolorum distinctio facere. Magnam et et quibusdam. Quod deserunt consequatur fugit enim non ut et."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["excerpt", "Maiores nihil iusto placeat repudiandae ut."], ["published", true], ["slug", "eaque-reiciendis-34"], ["title", "Voluptatem accusamus voluptatem consectetur."], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test34' OR lower(name) = 'rspec34' OR lower(name) = 'ruby34' OR lower(name) = '#rails34') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test34"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec34"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails34"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "bettie.kovacek@example.com"], ["author_name", "Florian Dickens"], ["body", "Iure doloremque vero ut rerum. Mollitia pariatur quam molestias."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "darron.berge@example.net"], ["author_name", "Antoinette Rohan"], ["body", "Dolor omnis dolor natus dolorem maiores quis."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "isabel_will@example.net"], ["author_name", "Miss Virgie Gerhold"], ["body", "Vitae similique beatae facere rerum aut aut."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "enrique_torp@example.com"], ["author_name", "Dr. Gail Rosenbaum"], ["body", "Accusamus ad aut dicta."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "norris@example.net"], ["author_name", "Oma Torp"], ["body", "Officia et asperiores non laboriosam adipisci. Aut soluta eveniet sit. Odit rerum ratione rerum iure quae ex."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "cristobal_daugherty@example.com"], ["author_name", "Bernice Altenwerth"], ["body", "Doloremque ut deserunt aut id qui doloribus quia. Et nostrum corrupti."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "amelie@example.com"], ["author_name", "Miss Albertha Gutmann"], ["body", "Perferendis voluptatibus tenetur deserunt."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "burnice@example.org"], ["author_name", "Chelsea Glover"], ["body", "Eius eveniet iusto rem ut aut."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "nat@example.com"], ["author_name", "Spencer Tremblay DDS"], ["body", "Similique veniam ea est iure placeat."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "khalid_bernier@example.net"], ["author_name", "Elise Rutherford"], ["body", "Deserunt quia quia. Voluptates et nihil eveniet dolorum rerum voluptate."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "willow@example.com"], ["author_name", "Maia Cartwright"], ["body", "Rem iste illo dolorem fugiat hic quam et. Inventore perferendis tempore."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "elisa_reinger@example.org"], ["author_name", "Jimmie Klocko"], ["body", "Rem maiores ipsa fugiat reiciendis perferendis aut sed. Dicta sunt occaecati accusantium. Aut laudantium aliquid."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "vicenta@example.org"], ["author_name", "Amy Ziemann"], ["body", "Distinctio autem et facere nesciunt quasi tenetur recusandae. Repellendus quae quas et similique debitis natus."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "dorcas@example.org"], ["author_name", "Lula Hahn PhD"], ["body", "Quisquam illum qui et non vitae autem quae. Cupiditate fugit reprehenderit repellendus eos occaecati. Itaque ut nam enim illo unde."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "camren@example.net"], ["author_name", "Miss Everardo Lind"], ["body", "Est animi debitis cupiditate earum error quia officiis. Velit nisi aliquam qui."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments" WHERE "almanac_comments"."spam" = 't'  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'brigitte_kohler@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "brigitte_kohler@example.net"], ["encrypted_password", "$2a$04$LGVpUpBtT5UNjWrJrO3RquHKz4oa95fDbR3XuB.q4IPrbWJU1VczC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.6ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 66], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["description", "Saepe voluptas hic distinctio minus necessitatibus modi autem. Sit tenetur dolore vitae ad fuga corporis ut. Ut maxime vitae. Minima error et neque a."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Exercitationem enim nihil."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptatum-libero-35' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 65], ["blog_id", 1], ["body", "Temporibus enim ut dolorem beatae. Enim necessitatibus cum quibusdam sapiente. Facere maiores necessitatibus sed officia. Est aut in qui rerum et magni. Maiores ducimus cumque voluptatem earum explicabo esse aliquam. Facilis dolor harum. Occaecati quis et dolor quam consectetur."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["excerpt", "Eos et assumenda."], ["published", true], ["slug", "voluptatum-libero-35"], ["title", "Aut deserunt voluptatibus facilis unde doloribus commodi."], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test35' OR lower(name) = 'rspec35' OR lower(name) = 'ruby35' OR lower(name) = '#rails35') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails35"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "korbin_boehm@example.net"], ["author_name", "Lindsey Carroll"], ["body", "Qui id doloribus ut. Quo illo vitae dolore perspiciatis dolorum tempore ipsa. Qui quasi aut ut unde ad."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#destroy as HTML Parameters: {"id"=>"1", "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "almanac_comments" WHERE "almanac_comments"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/1 Completed 302 Found in 8ms (ActiveRecord: 0.5ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'isabel_will@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "isabel_will@example.net"], ["encrypted_password", "$2a$04$5cEOx8ODDy2zRvOa1U1/Au6CMXHny8aI52zS080XimelKZN.1izhO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 68], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["description", "Doloremque mollitia modi excepturi enim rerum impedit tempore. Cupiditate qui numquam minus iusto. Ullam odio voluptas quis possimus ipsa qui eum. Quibusdam aperiam in dolores cum. Dolore placeat qui est."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quia est."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consequuntur-et-36' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 67], ["blog_id", 1], ["body", "Beatae harum odit ullam esse. Et non occaecati. Quae exercitationem ratione unde. Nulla natus et perspiciatis. Laudantium reiciendis est. Tempora quod molestiae cupiditate eum. Sapiente optio odit eum ipsam necessitatibus enim."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["excerpt", "Voluptate mollitia minima dolore non aperiam."], ["published", true], ["slug", "consequuntur-et-36"], ["title", "Rem ab distinctio eum aut."], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test36' OR lower(name) = 'rspec36' OR lower(name) = 'ruby36' OR lower(name) = '#rails36') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test36"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec36"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby36"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails36"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "aiyana@example.com"], ["author_name", "Winfield Macejkovic"], ["body", "Sit quisquam aspernatur. Molestias id aspernatur et dolores et."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  Processing by Almanac::CommentsController#destroy as HTML Parameters: {"id"=>"1", "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) DELETE FROM "almanac_comments" WHERE "almanac_comments"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/1 Completed 302 Found in 6ms (ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"   (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'brigitte_kohler@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "brigitte_kohler@example.net"], ["encrypted_password", "$2a$04$wZpBjMuARZNgSVdmLzCvvO7JT1KUDg7O6QO.zsZP.U8r/khKOA11G"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 70], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["description", "Saepe voluptas hic distinctio minus necessitatibus modi autem. Sit tenetur dolore vitae ad fuga corporis ut. Ut maxime vitae. Minima error et neque a."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Exercitationem enim nihil."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptatum-libero-37' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 69], ["blog_id", 1], ["body", "Temporibus enim ut dolorem beatae. Enim necessitatibus cum quibusdam sapiente. Facere maiores necessitatibus sed officia. Est aut in qui rerum et magni. Maiores ducimus cumque voluptatem earum explicabo esse aliquam. Facilis dolor harum. Occaecati quis et dolor quam consectetur."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["excerpt", "Eos et assumenda."], ["published", true], ["slug", "voluptatum-libero-37"], ["title", "Aut deserunt voluptatibus facilis unde doloribus commodi."], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test37' OR lower(name) = 'rspec37' OR lower(name) = 'ruby37' OR lower(name) = '#rails37') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test37"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec37"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby37"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails37"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Lindsey Carroll", "author_email"=>"korbin_boehm@example.net", "body"=>"Qui id doloribus ut. Quo illo vitae dolore perspiciatis dolorum tempore ipsa. Qui quasi aut ut unde ad."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "korbin_boehm@example.net"], ["author_name", "Lindsey Carroll"], ["body", "Qui id doloribus ut. Quo illo vitae dolore perspiciatis dolorum tempore ipsa. Qui quasi aut ut unde ad."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/voluptatum-libero-37 Completed 302 Found in 8ms (ActiveRecord: 0.5ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'isabel_will@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "isabel_will@example.net"], ["encrypted_password", "$2a$04$LYhdd1autHnEcylf1qzn9O0kVohiYGSAsmkEN2/NHbCSMjm1dUrt2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 72], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["description", "Doloremque mollitia modi excepturi enim rerum impedit tempore. Cupiditate qui numquam minus iusto. Ullam odio voluptas quis possimus ipsa qui eum. Quibusdam aperiam in dolores cum. Dolore placeat qui est."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quia est."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consequuntur-et-38' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 71], ["blog_id", 1], ["body", "Beatae harum odit ullam esse. Et non occaecati. Quae exercitationem ratione unde. Nulla natus et perspiciatis. Laudantium reiciendis est. Tempora quod molestiae cupiditate eum. Sapiente optio odit eum ipsam necessitatibus enim."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["excerpt", "Voluptate mollitia minima dolore non aperiam."], ["published", true], ["slug", "consequuntur-et-38"], ["title", "Rem ab distinctio eum aut."], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test38' OR lower(name) = 'rspec38' OR lower(name) = 'ruby38' OR lower(name) = '#rails38') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails38"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Winfield Macejkovic", "author_email"=>"aiyana@example.com", "body"=>nil}, "post_slug"=>"consequuntur-et-38"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 404 Not Found in 5ms  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'brigitte_kohler@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "brigitte_kohler@example.net"], ["encrypted_password", "$2a$04$xaWYKYWz4nFsjhJFCfrHYOX.9/.JmLVVD/DDlGZNUkaNu/1pVR9GG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 74], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["description", "Saepe voluptas hic distinctio minus necessitatibus modi autem. Sit tenetur dolore vitae ad fuga corporis ut. Ut maxime vitae. Minima error et neque a."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Exercitationem enim nihil."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptatum-libero-39' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 73], ["blog_id", 1], ["body", "Temporibus enim ut dolorem beatae. Enim necessitatibus cum quibusdam sapiente. Facere maiores necessitatibus sed officia. Est aut in qui rerum et magni. Maiores ducimus cumque voluptatem earum explicabo esse aliquam. Facilis dolor harum. Occaecati quis et dolor quam consectetur."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["excerpt", "Eos et assumenda."], ["published", true], ["slug", "voluptatum-libero-39"], ["title", "Aut deserunt voluptatibus facilis unde doloribus commodi."], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test39' OR lower(name) = 'rspec39' OR lower(name) = 'ruby39' OR lower(name) = '#rails39') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test39"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec39' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec39"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby39"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails39"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Lindsey Carroll", "author_email"=>"korbin_boehm@example.net", "body"=>"Qui id doloribus ut. Quo illo vitae dolore perspiciatis dolorum tempore ipsa. Qui quasi aut ut unde ad."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "korbin_boehm@example.net"], ["author_name", "Lindsey Carroll"], ["body", "Qui id doloribus ut. Quo illo vitae dolore perspiciatis dolorum tempore ipsa. Qui quasi aut ut unde ad."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/voluptatum-libero-39 Completed 302 Found in 49ms (ActiveRecord: 0.5ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'isabel_will@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "isabel_will@example.net"], ["encrypted_password", "$2a$04$qJXkjEmxZXqsaGrJkuT2XuS1lDl6QrxDDJZAuZT8uR5u.igmM5LWu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 76], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["description", "Doloremque mollitia modi excepturi enim rerum impedit tempore. Cupiditate qui numquam minus iusto. Ullam odio voluptas quis possimus ipsa qui eum. Quibusdam aperiam in dolores cum. Dolore placeat qui est."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quia est."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consequuntur-et-40' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 75], ["blog_id", 1], ["body", "Beatae harum odit ullam esse. Et non occaecati. Quae exercitationem ratione unde. Nulla natus et perspiciatis. Laudantium reiciendis est. Tempora quod molestiae cupiditate eum. Sapiente optio odit eum ipsam necessitatibus enim."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["excerpt", "Voluptate mollitia minima dolore non aperiam."], ["published", true], ["slug", "consequuntur-et-40"], ["title", "Rem ab distinctio eum aut."], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test40' OR lower(name) = 'rspec40' OR lower(name) = 'ruby40' OR lower(name) = '#rails40') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test40"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec40"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby40"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails40"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_comments" Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Winfield Macejkovic", "author_email"=>"aiyana@example.com", "body"=>"Sit quisquam aspernatur. Molestias id aspernatur et dolores et."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "aiyana@example.com"], ["author_name", "Winfield Macejkovic"], ["body", "Sit quisquam aspernatur. Molestias id aspernatur et dolores et."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/consequuntur-et-40 Completed 302 Found in 7ms (ActiveRecord: 0.4ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 78], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["description", "Sunt natus fuga. Quidem quia velit qui ut vitae enim. Odio optio quaerat. In magnam debitis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ratione sapiente qui dolorum distinctio."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 79], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["description", "Ut suscipit voluptas. Cumque quisquam omnis dolores vero. Iste voluptas nostrum debitis in nihil hic. Repudiandae incidunt mollitia nemo excepturi et ut et. Voluptatibus id omnis nemo totam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Modi exercitationem hic quisquam laboriosam expedita libero."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 82], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["description", "Ipsa quia quos facilis accusamus minima sequi. Dolorem eos laboriosam id consectetur. Eum ut veniam quas necessitatibus excepturi ad nemo."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolorem minus ipsa nemo similique."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptatem-natus-41' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 84], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["description", "Consequuntur enim accusantium amet. Nisi veniam eius omnis. Dolor ipsum unde non perferendis. Voluptatem et harum maxime et ut vitae."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Qui enim ullam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'est-et-42' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 83], ["blog_id", 1], ["body", "Illum qui et. Vel voluptatem dolore voluptate illum doloribus quod. Mollitia vero sit sed aut et placeat. Sit non id adipisci tempore accusantium iste. Natus nobis consectetur."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["excerpt", "Eius maxime aspernatur."], ["published", true], ["slug", "est-et-42"], ["title", "Et voluptate voluptas cumque aliquid."], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test42' OR lower(name) = 'rspec42' OR lower(name) = 'ruby42' OR lower(name) = '#rails42') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails42"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'iste-accusantium-43' LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 87], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["description", "Nihil qui ipsam ipsa eius autem fuga in. Expedita possimus voluptatum sunt voluptas beatae voluptatem. Molestiae soluta veniam a ad ea."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Voluptatem fuga modi voluptatem perspiciatis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'odit-et-44' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 89], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["description", "Voluptate velit et labore laboriosam. Et eum autem in illum et. Voluptatem commodi eaque cum voluptatum nihil praesentium eveniet. Dignissimos officia architecto. Alias voluptatem earum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Tenetur quis accusantium quas."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'iste-id-45' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nostrum-expedita-46' LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 91], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["description", "Omnis numquam officiis dolorem. Cum consectetur optio amet autem laborum ipsam fugit. Omnis odit aut officia veritatis at esse sed. Beatae tempora asperiores fuga at ad non tenetur. Magnam sed consequatur nulla aut dolorem vitae dolore."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Voluptatem eveniet aut delectus id quis expedita."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'pariatur-voluptate-47' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 92], ["blog_id", 1], ["body", "Fuga cumque ratione. A et consequatur dolores ipsa aliquam maxime molestiae. Animi sit autem natus ut. Sit doloribus voluptatibus quos quibusdam. Fugit voluptas fuga perspiciatis."], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["excerpt", "Eum animi molestias quod expedita."], ["published", true], ["slug", "pariatur-voluptate-47"], ["title", "Sint in quis repellendus assumenda et rerum facere."], ["updated_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test47' OR lower(name) = 'rspec47' OR lower(name) = 'ruby47' OR lower(name) = '#rails47') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails47"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quasi-deserunt-48' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 93], ["blog_id", 1], ["body", "Quia voluptas id nisi repudiandae ut vel nesciunt. Illo dignissimos atque nesciunt est occaecati perferendis. Molestiae qui unde eveniet assumenda provident ducimus sed. Ut omnis quibusdam ullam maxime sint voluptas. Esse adipisci omnis cupiditate eos dolorem eum. Maxime harum deleniti quibusdam quis consequatur voluptas veniam."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Nemo aut."], ["published", true], ["slug", "quasi-deserunt-48"], ["title", "Quis non reprehenderit omnis recusandae."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test48' OR lower(name) = 'rspec48' OR lower(name) = 'ruby48' OR lower(name) = '#rails48') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test48' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails48"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 95], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["description", "Odit eos et a quasi voluptatem deserunt sit. Nulla occaecati cumque. Dignissimos delectus et voluptatem est facilis quisquam. Nam doloribus nihil quae vel et alias. Ducimus quibusdam provident voluptatem voluptatibus dolor sint laboriosam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Non quae beatae nobis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'assumenda-ullam-49' LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 97], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["description", "Veniam eveniet labore odio tempore. Hic non vero consectetur excepturi accusamus repellendus nam. Minima dignissimos cupiditate in consequatur unde."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Reprehenderit quia nemo."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'autem-consequuntur-50' LIMIT 1  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 99], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["description", "Aspernatur facere quia impedit accusantium. Rerum et tenetur. Eos sint praesentium saepe qui."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolorem aliquid debitis et omnis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 101], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["description", "Enim debitis ut itaque asperiores nemo qui facere. Et et aspernatur iste. Eos natus enim et magni. Facere aliquam ipsam ut eum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Vitae aut non tempora accusamus ex suscipit."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'cumque-nesciunt-51' LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 103], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["description", "Dolor numquam molestias incidunt est aut eos. Voluptatem veritatis dolorem deleniti omnis est harum. Eos repellendus qui in doloremque repudiandae mollitia. Veritatis sed sit. Hic amet autem doloribus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aut maiores voluptatem ut."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 104], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["description", "Dolor modi sint. Repellendus non voluptatibus iusto nam unde. Et ducimus recusandae ab nulla rerum mollitia. Molestiae quia sit ex voluptate. Est veritatis reiciendis voluptate ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Voluptatem accusamus voluptatem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'corporis-aliquid-52' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 105], ["blog_id", 1], ["body", "Dolorem qui quo quia placeat itaque voluptatibus delectus. Voluptatem eos consectetur quidem sit suscipit vel ad. Eaque et illum quaerat deserunt illo. Quidem magni et sit. Ipsam et rem eum architecto officiis. Veniam autem recusandae provident. Cumque qui ratione sapiente numquam."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Modi assumenda."], ["published", true], ["slug", "corporis-aliquid-52"], ["title", "Nihil eveniet nihil consectetur pariatur."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test54' OR lower(name) = 'rspec54' OR lower(name) = 'ruby54' OR lower(name) = '#rails54') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails54"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consectetur-laborum-53' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 106], ["blog_id", 1], ["body", "Qui libero molestiae. Quod quibusdam qui. Et nemo id provident et voluptatem ratione explicabo. Ut voluptatem suscipit. Laudantium aut animi nobis quisquam. Et voluptas et in quia possimus voluptas. Velit vero quas dignissimos eum eligendi voluptatem laboriosam."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Rerum eligendi molestias."], ["published", true], ["slug", "consectetur-laborum-53"], ["title", "Officiis voluptatum odio voluptas."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test55' OR lower(name) = 'rspec55' OR lower(name) = 'ruby55' OR lower(name) = '#rails55') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test55' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails55"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-dolores-54' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 107], ["blog_id", 1], ["body", "Rerum aut ut sequi voluptatem. Modi consequuntur ullam aut qui in quo vel. Doloribus aut nihil porro quia est. Atque et voluptatem nihil autem quia accusamus ea. Voluptas saepe ut in aut voluptates ea impedit. Eius eaque et sit facilis minima."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Quaerat dolores amet voluptas fugiat corrupti."], ["published", true], ["slug", "et-dolores-54"], ["title", "Dolor et molestiae eos dolores neque."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test56' OR lower(name) = 'rspec56' OR lower(name) = 'ruby56' OR lower(name) = '#rails56') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails56"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sint-laudantium-55' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 108], ["blog_id", 1], ["body", "Numquam recusandae quaerat eligendi veniam. Aliquid pariatur distinctio necessitatibus. Cumque quod ab ullam nisi. Sunt ducimus maiores. Consequatur aperiam et. Dolore voluptatem qui exercitationem cum."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Dicta cupiditate quia."], ["published", false], ["slug", "sint-laudantium-55"], ["title", "Sequi ad quia quas sit quo."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test57' OR lower(name) = 'rspec57' OR lower(name) = 'ruby57' OR lower(name) = '#rails57') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails57"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consequuntur-dignissimos-56' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 109], ["blog_id", 1], ["body", "Dolores aut quaerat qui minima. Tenetur fuga cupiditate vitae earum nulla ut. Omnis porro quasi veritatis maiores non. Dignissimos est nihil itaque. Voluptatem quis sed est nulla odio. Neque vero facere voluptatum quis ut. Maxime repellat corrupti pariatur velit quo maiores."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Facilis minus."], ["published", false], ["slug", "consequuntur-dignissimos-56"], ["title", "Nisi non totam aut ipsa sit odit."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test58' OR lower(name) = 'rspec58' OR lower(name) = 'ruby58' OR lower(name) = '#rails58') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec58"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby58"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails58"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'soluta-consequatur-57' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 110], ["blog_id", 1], ["body", "Et molestiae maiores rerum deserunt. Enim et ut. Quo aut esse. Enim ullam nulla voluptatem maiores sint. Inventore ut sequi. Quia incidunt ipsa id deleniti."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Voluptas dignissimos non."], ["published", false], ["slug", "soluta-consequatur-57"], ["title", "Iusto dolores voluptates dolor ea."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test59' OR lower(name) = 'rspec59' OR lower(name) = 'ruby59' OR lower(name) = '#rails59') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails59"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.2ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f'  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 111], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["description", "Maiores nihil iusto placeat repudiandae ut recusandae in. Quo quidem commodi quisquam. Vitae id possimus. Ut asperiores facilis eaque repellendus aliquam illo."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Est et dolores qui."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nam-ad-58' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 112], ["blog_id", 1], ["body", "Accusantium illum voluptas architecto in praesentium. Sit commodi qui deserunt occaecati a. Odio dolor est. Voluptatum exercitationem modi praesentium. Ut suscipit voluptas."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Omnis repudiandae eligendi dolores pariatur."], ["published", true], ["slug", "nam-ad-58"], ["title", "Ratione sapiente qui dolorum distinctio facere."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test60' OR lower(name) = 'rspec60' OR lower(name) = 'ruby60' OR lower(name) = '#rails60') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails60"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'placeat-illum-59' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 113], ["blog_id", 1], ["body", "Minus magnam est eos fugit dolor. Doloribus qui nesciunt repellendus esse repudiandae nobis excepturi. Voluptatem vel soluta. Consequatur praesentium saepe quis optio enim voluptates. Rem non est laudantium aliquam nulla."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Explicabo quia rerum voluptas."], ["published", true], ["slug", "placeat-illum-59"], ["title", "Cumque quisquam omnis dolores vero."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test61' OR lower(name) = 'rspec61' OR lower(name) = 'ruby61' OR lower(name) = '#rails61') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test61' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby61"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails61"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'accusamus-cupiditate-60' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 114], ["blog_id", 1], ["body", "Et fuga enim vel ut voluptate facere. Animi eius similique libero perspiciatis ut dolorum. Aut rerum provident cupiditate rem atque amet. Ut omnis aut deserunt eius eum nihil et. Omnis rerum et sapiente et temporibus qui. Omnis accusantium explicabo."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Officiis aut perferendis."], ["published", true], ["slug", "accusamus-cupiditate-60"], ["title", "Sint illum voluptatibus minus et et."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test62' OR lower(name) = 'rspec62' OR lower(name) = 'ruby62' OR lower(name) = '#rails62') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test62' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails62"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'laudantium-voluptas-61' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 115], ["blog_id", 1], ["body", "Quia sed aperiam consequatur omnis enim quos reprehenderit. Dolorem asperiores suscipit ullam ipsum architecto. Distinctio voluptas reiciendis voluptatem vero dolores iste. Officia modi quisquam necessitatibus. Qui earum amet qui dolor quasi. Optio qui veritatis ipsa voluptas. Numquam nisi quia omnis."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "In."], ["published", true], ["slug", "laudantium-voluptas-61"], ["title", "Consectetur rerum deserunt aut sed neque quo."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test63' OR lower(name) = 'rspec63' OR lower(name) = 'ruby63' OR lower(name) = '#rails63') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails63"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consequatur-ut-62' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 116], ["blog_id", 1], ["body", "Exercitationem dolores fugit. Occaecati voluptatibus repellat. Ut sunt repudiandae dicta odio nam. Dolorem consequuntur non. Sed maxime quidem."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Asperiores."], ["published", false], ["slug", "consequatur-ut-62"], ["title", "Non quo odio a tempora dolores id."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test64' OR lower(name) = 'rspec64' OR lower(name) = 'ruby64' OR lower(name) = '#rails64') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec64"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails64"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-et-63' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 117], ["blog_id", 1], ["body", "Voluptatem fugit nemo. Aut non rerum id laudantium cupiditate fugiat. Aut error vel non debitis assumenda repellendus illum. Maxime fugit at. Quod voluptatum occaecati hic quasi. Non ex possimus illo. Culpa consectetur perspiciatis."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Architecto ratione et sunt omnis."], ["published", false], ["slug", "qui-et-63"], ["title", "Doloremque dicta necessitatibus enim aliquam enim."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test65' OR lower(name) = 'rspec65' OR lower(name) = 'ruby65' OR lower(name) = '#rails65') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails65"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quia-quibusdam-64' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 118], ["blog_id", 1], ["body", "Ea doloribus quasi. Qui dolorem fugiat ut eveniet. Asperiores officia perspiciatis aut. Fugit accusantium laboriosam a impedit earum praesentium. Atque eum eos est sed autem id. Quae aut reprehenderit qui eligendi. Natus dolorem earum et."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Veniam ipsa et repellat vero."], ["published", false], ["slug", "quia-quibusdam-64"], ["title", "Vero maxime aut repellat et."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test66' OR lower(name) = 'rspec66' OR lower(name) = 'ruby66' OR lower(name) = '#rails66') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails66"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 't'  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 119], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["description", "Maiores nihil iusto placeat repudiandae ut recusandae in. Quo quidem commodi quisquam. Vitae id possimus. Ut asperiores facilis eaque repellendus aliquam illo."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Est et dolores qui."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nam-ad-65' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 120], ["blog_id", 1], ["body", "Accusantium illum voluptas architecto in praesentium. Sit commodi qui deserunt occaecati a. Odio dolor est. Voluptatum exercitationem modi praesentium. Ut suscipit voluptas."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Omnis repudiandae eligendi dolores pariatur."], ["published", true], ["slug", "nam-ad-65"], ["title", "Ratione sapiente qui dolorum distinctio facere."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test67' OR lower(name) = 'rspec67' OR lower(name) = 'ruby67' OR lower(name) = '#rails67') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test67' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails67"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'placeat-illum-66' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 121], ["blog_id", 1], ["body", "Minus magnam est eos fugit dolor. Doloribus qui nesciunt repellendus esse repudiandae nobis excepturi. Voluptatem vel soluta. Consequatur praesentium saepe quis optio enim voluptates. Rem non est laudantium aliquam nulla."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Explicabo quia rerum voluptas."], ["published", true], ["slug", "placeat-illum-66"], ["title", "Cumque quisquam omnis dolores vero."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test68' OR lower(name) = 'rspec68' OR lower(name) = 'ruby68' OR lower(name) = '#rails68') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test68' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails68"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'accusamus-cupiditate-67' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 122], ["blog_id", 1], ["body", "Et fuga enim vel ut voluptate facere. Animi eius similique libero perspiciatis ut dolorum. Aut rerum provident cupiditate rem atque amet. Ut omnis aut deserunt eius eum nihil et. Omnis rerum et sapiente et temporibus qui. Omnis accusantium explicabo."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Officiis aut perferendis."], ["published", true], ["slug", "accusamus-cupiditate-67"], ["title", "Sint illum voluptatibus minus et et."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test69' OR lower(name) = 'rspec69' OR lower(name) = 'ruby69' OR lower(name) = '#rails69') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec69"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby69"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails69"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'laudantium-voluptas-68' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 123], ["blog_id", 1], ["body", "Quia sed aperiam consequatur omnis enim quos reprehenderit. Dolorem asperiores suscipit ullam ipsum architecto. Distinctio voluptas reiciendis voluptatem vero dolores iste. Officia modi quisquam necessitatibus. Qui earum amet qui dolor quasi. Optio qui veritatis ipsa voluptas. Numquam nisi quia omnis."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "In."], ["published", true], ["slug", "laudantium-voluptas-68"], ["title", "Consectetur rerum deserunt aut sed neque quo."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test70' OR lower(name) = 'rspec70' OR lower(name) = 'ruby70' OR lower(name) = '#rails70') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails70"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consequatur-ut-69' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 124], ["blog_id", 1], ["body", "Exercitationem dolores fugit. Occaecati voluptatibus repellat. Ut sunt repudiandae dicta odio nam. Dolorem consequuntur non. Sed maxime quidem."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Asperiores."], ["published", true], ["slug", "consequatur-ut-69"], ["title", "Non quo odio a tempora dolores id."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test71' OR lower(name) = 'rspec71' OR lower(name) = 'ruby71' OR lower(name) = '#rails71') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test71' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails71"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-et-70' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 125], ["blog_id", 1], ["body", "Voluptatem fugit nemo. Aut non rerum id laudantium cupiditate fugiat. Aut error vel non debitis assumenda repellendus illum. Maxime fugit at. Quod voluptatum occaecati hic quasi. Non ex possimus illo. Culpa consectetur perspiciatis."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Architecto ratione et sunt omnis."], ["published", true], ["slug", "qui-et-70"], ["title", "Doloremque dicta necessitatibus enim aliquam enim."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test72' OR lower(name) = 'rspec72' OR lower(name) = 'ruby72' OR lower(name) = '#rails72') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails72"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quia-quibusdam-71' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 126], ["blog_id", 1], ["body", "Ea doloribus quasi. Qui dolorem fugiat ut eveniet. Asperiores officia perspiciatis aut. Fugit accusantium laboriosam a impedit earum praesentium. Atque eum eos est sed autem id. Quae aut reprehenderit qui eligendi. Natus dolorem earum et."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Veniam ipsa et repellat vero."], ["published", true], ["slug", "quia-quibusdam-71"], ["title", "Vero maxime aut repellat et."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test73' OR lower(name) = 'rspec73' OR lower(name) = 'ruby73' OR lower(name) = '#rails73') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails73"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'exercitationem-iusto-72' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 127], ["blog_id", 1], ["body", "Expedita deserunt ullam aut. Illum sed aut voluptatem. Sed et delectus veniam. Vel perspiciatis hic eos reiciendis animi ea. Iure molestiae earum dolorum. Hic vero dolor numquam. Sunt iste id odio veniam natus numquam beatae."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Sequi dolorem nobis."], ["published", true], ["slug", "exercitationem-iusto-72"], ["title", "Architecto rerum enim fugit tenetur autem."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test74' OR lower(name) = 'rspec74' OR lower(name) = 'ruby74' OR lower(name) = '#rails74') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails74"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'cumque-nam-73' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 128], ["blog_id", 1], ["body", "Repellat et vel qui. Mollitia ullam culpa officiis adipisci eum et natus. Aut nostrum aliquam voluptatibus architecto aut. Sit iure dolor consectetur. Omnis illum officiis dolorem."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Inventore eveniet voluptas recusandae non porro."], ["published", true], ["slug", "cumque-nam-73"], ["title", "Id qui consectetur quia et soluta."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test75' OR lower(name) = 'rspec75' OR lower(name) = 'ruby75' OR lower(name) = '#rails75') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test75' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails75"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quod-tempore-74' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 129], ["blog_id", 1], ["body", "Est mollitia autem eligendi ut ipsum dolores accusantium. Eum commodi et veniam. Ex odio qui voluptatem. Esse non in provident. Voluptatem quaerat assumenda in sit."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Et vitae aliquid."], ["published", true], ["slug", "quod-tempore-74"], ["title", "Aut quae ipsum dolorem quis soluta."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test76' OR lower(name) = 'rspec76' OR lower(name) = 'ruby76' OR lower(name) = '#rails76') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test76' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails76"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sit-ut-75' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 130], ["blog_id", 1], ["body", "Et ducimus iusto tenetur ut autem ut. Explicabo dolorem sunt ipsum dolores incidunt. Nulla mollitia est molestiae eos dolore ut deserunt. Facilis porro debitis aut totam. Similique nisi voluptatem officiis at."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Illum."], ["published", false], ["slug", "sit-ut-75"], ["title", "Qui aperiam harum quod possimus provident quos vitae."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test77' OR lower(name) = 'rspec77' OR lower(name) = 'ruby77' OR lower(name) = '#rails77') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test77"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec77"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby77"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails77"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 42 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 42], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 43 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 43], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 44 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 44], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 45 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 45], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'perspiciatis-maxime-76' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 131], ["blog_id", 1], ["body", "Aut molestias et est eaque architecto. Nihil ad eum enim. Provident necessitatibus laborum ipsam. Animi praesentium et blanditiis in. Consequatur molestiae odit earum laboriosam repudiandae aspernatur dolores."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Accusamus repellat odit quod."], ["published", false], ["slug", "perspiciatis-maxime-76"], ["title", "Dolorum harum et sit."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test78' OR lower(name) = 'rspec78' OR lower(name) = 'ruby78' OR lower(name) = '#rails78') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test78' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test78"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec78"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby78"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails78"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 46 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 46], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 47 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 47], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 48 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 48], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 49 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 49], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_385d7e1 ON posts_taggings_385d7e1.taggable_id = almanac_posts.id AND posts_taggings_385d7e1.taggable_type = 'Almanac::Post' AND posts_taggings_385d7e1.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 132], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["description", "Porro dolorem tempore. Quo ex iste exercitationem. Laudantium error doloremque praesentium delectus. Est est nulla."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ut animi pariatur cupiditate."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'vero-aspernatur-77' LIMIT 1 SQL (0.6ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 133], ["blog_id", 1], ["body", "Asperiores quo quam aut quisquam minus perferendis voluptatem. Pariatur perspiciatis corrupti ad enim. Sint reprehenderit asperiores aliquam quia aut non molestiae. Dolorem aliquid debitis et omnis maiores. Qui ea maiores non molestiae molestiae in. Consequatur accusantium deserunt nam sint ullam neque. Non tempore eligendi dicta excepturi."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Eos consectetur repellendus error odit."], ["published", true], ["slug", "vero-aspernatur-77"], ["title", "Eaque consequuntur voluptatum expedita necessitatibus rerum voluptas."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test79' OR lower(name) = 'rspec79' OR lower(name) = 'ruby79' OR lower(name) = '#rails79') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails79"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ullam-cumque-78' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 134], ["blog_id", 1], ["body", "Vitae aut non tempora accusamus ex suscipit commodi. Culpa magni qui porro. Debitis omnis fuga quas aperiam repudiandae illo. Fugit eius ipsa quasi quia eligendi unde et. Veniam error magnam."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Cum excepturi."], ["published", true], ["slug", "ullam-cumque-78"], ["title", "Ea est necessitatibus temporibus delectus porro laboriosam id."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test80' OR lower(name) = 'rspec80' OR lower(name) = 'ruby80' OR lower(name) = '#rails80') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test80' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test80"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec80"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby80"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails80"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nisi-molestiae-79' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 135], ["blog_id", 1], ["body", "Ut quaerat est perspiciatis. Natus omnis aperiam eius aliquam minima accusamus atque. Deleniti omnis exercitationem laborum libero consequatur. Molestiae provident repellat est et vitae voluptas. Iure fugiat aut optio. Necessitatibus fuga sed ullam aliquam ab."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Quia nesciunt."], ["published", true], ["slug", "nisi-molestiae-79"], ["title", "Aut ratione aut nam quae aut."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test81' OR lower(name) = 'rspec81' OR lower(name) = 'ruby81' OR lower(name) = '#rails81') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test81"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec81"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby81"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails81"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'possimus-unde-80' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 136], ["blog_id", 1], ["body", "Aut earum incidunt optio molestiae dignissimos officiis. Enim quam rerum. Sint occaecati consectetur. Aliquid ea nisi quia qui neque rerum magnam. Nulla nam deserunt et consectetur non labore fuga. Perspiciatis et et illo error et numquam rerum."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Ut natus molestias minima."], ["published", true], ["slug", "possimus-unde-80"], ["title", "Aut maiores voluptatem ut perspiciatis."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test82' OR lower(name) = 'rspec82' OR lower(name) = 'ruby82' OR lower(name) = '#rails82') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test82"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec82"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby82"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails82"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolore-eveniet-81' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 137], ["blog_id", 1], ["body", "Eaque qui qui facere. Ipsa neque quo amet velit beatae. Quia autem incidunt maiores unde saepe repudiandae. Asperiores illo aut consequatur maiores ex cum ipsa. Provident illum pariatur repellat."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Iusto facilis consequatur accusamus maiores."], ["published", true], ["slug", "dolore-eveniet-81"], ["title", "Alias repudiandae nam quis occaecati id deserunt."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test83' OR lower(name) = 'rspec83' OR lower(name) = 'ruby83' OR lower(name) = '#rails83') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby83"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails83"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'autem-dolor-82' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 138], ["blog_id", 1], ["body", "Est accusamus inventore est similique repellat illum. Nesciunt mollitia autem. Unde magnam sit tenetur dolorum molestias at. Placeat esse nemo et. Rerum aut reprehenderit nisi voluptas sunt similique aut."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Et."], ["published", true], ["slug", "autem-dolor-82"], ["title", "Saepe velit aut tempora commodi sed natus autem."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test84' OR lower(name) = 'rspec84' OR lower(name) = 'ruby84' OR lower(name) = '#rails84') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails84"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'possimus-eum-83' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 139], ["blog_id", 1], ["body", "Quibusdam velit est iste officia ut. Voluptatibus sunt maiores natus exercitationem id. Velit et repellat quasi accusamus. Qui voluptatem dolor et. Quo qui et a ut."], ["created_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["excerpt", "Facere id."], ["published", true], ["slug", "possimus-eum-83"], ["title", "Voluptate tempora qui."], ["updated_at", Fri, 28 Dec 2012 04:40:18 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test85' OR lower(name) = 'rspec85' OR lower(name) = 'ruby85' OR lower(name) = '#rails85') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test85' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails85"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'exercitationem-iste-84' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 140], ["blog_id", 1], ["body", "Suscipit cupiditate ab omnis. Esse earum nemo porro quia culpa consectetur. Quia sit maiores. Doloribus ut consequatur maxime ut mollitia molestias repellendus. Suscipit architecto rerum sunt iure dolorum dolorem. Consequatur consequatur qui sapiente nisi provident unde."], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["excerpt", "Perferendis aut et repudiandae perspiciatis."], ["published", true], ["slug", "exercitationem-iste-84"], ["title", "Aut ab mollitia."], ["updated_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test86' OR lower(name) = 'rspec86' OR lower(name) = 'ruby86' OR lower(name) = '#rails86') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test86"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec86"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby86"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails86"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-voluptate-85' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 141], ["blog_id", 1], ["body", "Quis vitae debitis aut. Velit sit vel cumque molestias placeat. Quia et quaerat sapiente. Consequatur voluptatum hic. Vel amet quos in similique ratione. Provident dignissimos fuga eos in error saepe accusamus."], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["excerpt", "Molestiae."], ["published", true], ["slug", "aut-voluptate-85"], ["title", "Accusantium velit dolores iure repudiandae inventore."], ["updated_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test87' OR lower(name) = 'rspec87' OR lower(name) = 'ruby87' OR lower(name) = '#rails87') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test87' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails87"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sed-illo-86' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 142], ["blog_id", 1], ["body", "Facilis at quam. Sit odit dignissimos sequi. Necessitatibus ut dolor quaerat assumenda eius. Excepturi ad architecto nobis esse dolores. Voluptatem mollitia atque ut."], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["excerpt", "Voluptatum voluptatem."], ["published", true], ["slug", "sed-illo-86"], ["title", "Quidem qui atque tenetur enim quam aperiam est."], ["updated_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test88' OR lower(name) = 'rspec88' OR lower(name) = 'ruby88' OR lower(name) = '#rails88') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails88"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'doloribus-quis-87' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 143], ["blog_id", 1], ["body", "Quasi aperiam similique possimus facere amet voluptatibus. Tempora vel aliquam quos repellat nulla eveniet. Sapiente amet dolores officia aliquid id. Tempora nesciunt eius voluptate voluptatibus quo. Inventore sapiente esse nihil et vitae magni. Quod cum omnis vel velit eaque beatae est."], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["excerpt", "Autem repellat fugiat."], ["published", true], ["slug", "doloribus-quis-87"], ["title", "Autem a ab sint."], ["updated_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'similique-et-88' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 144], ["blog_id", 1], ["body", "Atque aliquam est qui dignissimos praesentium. Hic illum aut labore officiis. Nostrum nihil odit velit. Asperiores et officia sed aut. Quisquam placeat quis minima voluptatem illum illo consequuntur."], ["created_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["excerpt", "Possimus ea distinctio omnis sunt in."], ["published", true], ["slug", "similique-et-88"], ["title", "Et et ipsam quibusdam in."], ["updated_at", Fri, 28 Dec 2012 04:40:19 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_39d1d70 ON posts_taggings_39d1d70.taggable_id = almanac_posts.id AND posts_taggings_39d1d70.taggable_type = 'Almanac::Post' AND posts_taggings_39d1d70.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.6ms) rollback transaction Connecting to database specified by database.yml  (0.8ms) DELETE FROM "users";  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';  (1.1ms) DELETE FROM "almanac_posts";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_posts';  (0.9ms) DELETE FROM "almanac_images";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_images';  (0.8ms) DELETE FROM "tags";  (0.1ms) DELETE FROM sqlite_sequence where name = 'tags';  (0.8ms) DELETE FROM "taggings";  (0.2ms) DELETE FROM sqlite_sequence where name = 'taggings';  (1.1ms) DELETE FROM "almanac_comments";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_comments';  (1.0ms) DELETE FROM "almanac_blogs";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_blogs';  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (1.9ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (5.1ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["description", "Et autem fuga et. Ea accusamus debitis rerum et. Maxime autem vel exercitationem quo id."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Doloremque provident ut."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 4], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["description", "Nisi ratione aut fugit delectus beatae esse dolores. A accusamus est quia molestias dolorem aut commodi. Pariatur et voluptas debitis quia sit eum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Autem est eos eos alias."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 6], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["description", "A incidunt velit officia mollitia sint sed sit. Magnam ab vero. Aut at voluptatem unde. Excepturi non aut necessitatibus numquam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Non corporis officia accusantium."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'occaecati-laborum-1' LIMIT 1 SQL (0.6ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 5], ["blog_id", 1], ["body", "Nesciunt possimus nihil. Nisi nihil qui est aliquam laboriosam. Beatae voluptatem expedita qui suscipit magni reiciendis. Ex qui ratione sunt vero qui vel. Laborum illum est adipisci occaecati ipsam sint."], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["excerpt", "Quia consectetur."], ["published", true], ["slug", "occaecati-laborum-1"], ["title", "Dolorum officia ducimus libero dolor."], ["updated_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test1' OR lower(name) = 'rspec1' OR lower(name) = 'ruby1' OR lower(name) = '#rails1') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails1"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 8], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["description", "Distinctio recusandae aut et eos sit non harum. Enim aliquid suscipit exercitationem deleniti aspernatur. Reiciendis asperiores tenetur consequuntur aut dolorem alias quia. Officiis et in quos. Ut et consequatur excepturi totam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Debitis ad expedita placeat veritatis eos."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptatem-sunt-2' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 7], ["blog_id", 1], ["body", "Quia consequatur hic laboriosam. Tempora sunt velit exercitationem dolore ut autem. Porro fugiat et deserunt et dolores ea odio. Delectus ut assumenda. Harum dignissimos fugit. Quia id rem et laboriosam."], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["excerpt", "Qui."], ["published", true], ["slug", "voluptatem-sunt-2"], ["title", "Ipsam quisquam cupiditate aut explicabo."], ["updated_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test2' OR lower(name) = 'rspec2' OR lower(name) = 'ruby2' OR lower(name) = '#rails2') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test2"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec2"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby2"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails2"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 10], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["description", "Explicabo quaerat ex odit facere qui facilis quisquam. Ex rerum tempora qui facilis. Expedita dolorem a nihil doloribus non qui. Minima velit magni sapiente."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Veritatis dolores quia dolore."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'officiis-dolores-3' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 9], ["blog_id", 1], ["body", "Beatae quis ullam maxime qui molestiae. Est sint est fuga quod deserunt voluptas. Fuga sunt ut dignissimos reiciendis. Saepe vel in animi est sit. Aliquam laudantium tenetur. Eos et quas. Sunt rem sit voluptatem."], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["excerpt", "Sunt vel quidem."], ["published", true], ["slug", "officiis-dolores-3"], ["title", "Occaecati rerum libero beatae qui."], ["updated_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test3' OR lower(name) = 'rspec3' OR lower(name) = 'ruby3' OR lower(name) = '#rails3') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec3"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails3"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 12], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["description", "Laboriosam eum magnam consequatur et consequatur quidem iure. Quaerat in quae. Ut ut quis adipisci vitae consectetur. Ducimus repellendus enim quia."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ex quia ea voluptates qui id."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'accusamus-est-4' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 11], ["blog_id", 1], ["body", "Ex quo aliquam. Qui illum ut rerum voluptatibus fugiat. Placeat et magnam voluptas qui delectus et in. Et sunt placeat. Consequatur maxime ducimus est quae qui aliquam. Soluta temporibus aspernatur possimus velit veniam tempora. Dolorem non cum."], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["excerpt", "Atque nesciunt error laboriosam facilis rerum."], ["published", true], ["slug", "accusamus-est-4"], ["title", "Harum sit natus sed debitis."], ["updated_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test4' OR lower(name) = 'rspec4' OR lower(name) = 'ruby4' OR lower(name) = '#rails4') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails4"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:00 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "anderson.white@example.com"], ["author_name", "Alejandra Brekke"], ["body", "Inventore nostrum quia. Et omnis dignissimos impedit cumque sint recusandae enim. Veritatis officiis eveniet modi."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" ORDER BY id ASC  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 14], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["description", "Occaecati aut ea. Voluptates saepe iste voluptatem ducimus error dignissimos et. Corrupti officiis aut asperiores a. Odio et eum quo eveniet sit. Occaecati veritatis et error natus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Alias eveniet eos facilis consequatur nisi."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'assumenda-et-5' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 13], ["blog_id", 1], ["body", "Ea accusamus debitis rerum et. Maxime autem vel exercitationem quo id. Et iste voluptas quia officia. Dolorum recusandae beatae et aut cumque aspernatur. Et enim voluptatum sit. Similique quis sequi nam enim ut reiciendis."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["excerpt", "Harum."], ["published", true], ["slug", "assumenda-et-5"], ["title", "Doloremque tenetur et quia quibusdam."], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test5' OR lower(name) = 'rspec5' OR lower(name) = 'ruby5' OR lower(name) = '#rails5') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails5"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "beatrice@example.com"], ["author_name", "Eloisa Jaskolski"], ["body", "Est quis itaque delectus ut assumenda deleniti enim. Tenetur eaque voluptas qui esse molestias quibusdam. Corporis tempora quia vel laboriosam facilis enim."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "xavier.jenkins@example.org"], ["author_name", "Miss Hadley Streich"], ["body", "Quia assumenda commodi labore."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "jan@example.com"], ["author_name", "Kyra Vandervort"], ["body", "Non aliquam blanditiis facere nostrum."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "aurore_vonrueden@example.net"], ["author_name", "Uriel Predovic"], ["body", "Incidunt debitis fugit voluptates id impedit mollitia numquam. Illum expedita nulla nihil magni. Ipsa deserunt omnis similique porro voluptatum."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "sincere_dietrich@example.net"], ["author_name", "Meredith Lebsack II"], ["body", "Alias eveniet commodi in eum et sint dicta. Ut autem consequuntur nisi eum aut."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "sophie@example.org"], ["author_name", "Mrs. Allen Walsh"], ["body", "Ex pariatur ut magni. Est incidunt rerum ad."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "vivienne@example.net"], ["author_name", "Mr. Fausto Langworth"], ["body", "Neque quo illo."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "allie@example.com"], ["author_name", "Alejandra Weissnat"], ["body", "Nam aliquid praesentium ut. Est voluptates consequuntur odio omnis doloribus."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "arden_heathcote@example.org"], ["author_name", "Carli Volkman IV"], ["body", "Dolorem animi quod distinctio. In et excepturi nulla ea."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "della.jerde@example.org"], ["author_name", "Elyssa Lesch DVM"], ["body", "Facere natus sit ab. Est modi officia et."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "brooks@example.com"], ["author_name", "Sigmund Price"], ["body", "Asperiores quia et deleniti soluta et ea."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "maeve_gutmann@example.org"], ["author_name", "Mrs. Carissa Cruickshank"], ["body", "Amet ipsum voluptatum officia. Laborum deleniti earum praesentium qui voluptatibus."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "leora@example.org"], ["author_name", "Electa Wisoky"], ["body", "Aut omnis aut et eos enim. Eius dolorem voluptas et distinctio."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "zane@example.com"], ["author_name", "Wendy Hettinger"], ["body", "Temporibus est quas atque voluptates. Fugit ea mollitia excepturi omnis consequuntur. Et odit blanditiis consequatur in."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "amari@example.net"], ["author_name", "Gerda Kozey"], ["body", "Aliquam expedita nobis ut ipsa quis aut. Quia et voluptatum quis maxime."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments" WHERE "almanac_comments"."spam" = 't'  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'agustina@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "agustina@example.com"], ["encrypted_password", "$2a$04$Z1cmfVkssA8IJq5/PzBuNuZBvHrUBByO/EuvKmvwk1MilbG0RvVf."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 15], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["description", "Beatae culpa adipisci eos. Eveniet ut est aut. Aliquam maiores quo maxime."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Suscipit odit dicta cum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Molestiae repellat aliquam sed et ipsa.", "slug"=>"consequuntur-a-6", "excerpt"=>"Nemo occaecati esse ad.", "body"=>"Est qui veniam aliquam accusamus et quibusdam vero. Vel quis et. Fuga et quibusdam voluptate modi consequatur atque autem. Necessitatibus quae rerum autem sint deserunt occaecati. In ut nulla inventore suscipit veritatis.", "published"=>true, "tag_list"=>"common,test6,rspec6,ruby6,#rails6", "author_id"=>"16", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consequuntur-a-6' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Est qui veniam aliquam accusamus et quibusdam vero. Vel quis et. Fuga et quibusdam voluptate modi consequatur atque autem. Necessitatibus quae rerum autem sint deserunt occaecati. In ut nulla inventore suscipit veritatis."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["excerpt", "Nemo occaecati esse ad."], ["published", true], ["slug", "consequuntur-a-6"], ["title", "Molestiae repellat aliquam sed et ipsa."], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test6' OR lower(name) = 'rspec6' OR lower(name) = 'ruby6' OR lower(name) = '#rails6') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test6"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec6"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby6"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails6"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 28ms (ActiveRecord: 2.4ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'gilbert@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "gilbert@example.net"], ["encrypted_password", "$2a$04$zricrDNni4AJYI0cCz/eUehJG5YAMtwS1MXelb8TMCsW63fztpf6C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 17], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["description", "Quis eligendi libero voluptas nobis odio. Aut magni rem soluta similique aliquam. Pariatur enim ullam dolorem officiis consequatur omnis. Quia est sequi dignissimos exercitationem. Aut consequatur deserunt."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Illum autem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Ipsa qui similique ut.", "slug"=>"officia-non-7", "excerpt"=>"Consequatur quidem est et nam et.", "body"=>"Nesciunt aperiam sit cum provident. Numquam nemo et provident aut. Aut voluptatem quia vel nisi molestiae quisquam ratione. Debitis alias aut exercitationem. Quos et omnis.", "published"=>true, "tag_list"=>"common,test7,rspec7,ruby7,#rails7", "author_id"=>"18", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'officia-non-7' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Nesciunt aperiam sit cum provident. Numquam nemo et provident aut. Aut voluptatem quia vel nisi molestiae quisquam ratione. Debitis alias aut exercitationem. Quos et omnis."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["excerpt", "Consequatur quidem est et nam et."], ["published", true], ["slug", "officia-non-7"], ["title", "Ipsa qui similique ut."], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test7' OR lower(name) = 'rspec7' OR lower(name) = 'ruby7' OR lower(name) = '#rails7') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails7"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 29ms (ActiveRecord: 2.6ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'agustina@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "agustina@example.com"], ["encrypted_password", "$2a$04$R.6.8Wvnk8b5pNEGutNg9.5P6U0ym0y1Vg1Y103LEE67X655SBOpe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 19], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["description", "Beatae culpa adipisci eos. Eveniet ut est aut. Aliquam maiores quo maxime."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Suscipit odit dicta cum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"assumenda-consequuntur-8", "excerpt"=>"Quo quaerat id facilis est.", "body"=>"Accusamus omnis quis velit laborum. Voluptatem quae odit ullam maiores est. Aliquam illo quaerat ipsam laborum. Quod qui sit cupiditate ut aliquid harum. Necessitatibus quae rerum autem sint deserunt occaecati. In ut nulla inventore suscipit veritatis. Suscipit et ea cupiditate itaque debitis quisquam aut.", "published"=>true, "tag_list"=>"common,test8,rspec8,ruby8,#rails8", "author_id"=>"20", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (2.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'assumenda-consequuntur-8' LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 59ms (Views: 46.6ms | ActiveRecord: 2.3ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"   (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'samir_hermann@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "samir_hermann@example.com"], ["encrypted_password", "$2a$04$3t337xOCUpjqaA4PJuM.m.9..t9IB5tIp4x67z2iu9vqydhezr0I."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 21], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["description", "Sit cupiditate cumque veritatis ab minima. Quaerat dolorum reprehenderit dicta ipsa et aliquid eos. Quas et unde aspernatur sit in maiores labore."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ea tempore aut omnis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"eos-beatae-9", "excerpt"=>"Dolorem.", "body"=>"Amet nesciunt vel eveniet. A sint qui aliquid facere aut. Natus eligendi quod eum aspernatur qui corporis quo. Sit non fugit eveniet tenetur blanditiis odit et. Molestias ut illum totam. Quidem officia id.", "published"=>true, "tag_list"=>"common,test9,rspec9,ruby9,#rails9", "author_id"=>"22", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eos-beatae-9' LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 1.5ms | ActiveRecord: 0.4ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'agustina@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "agustina@example.com"], ["encrypted_password", "$2a$04$p7kHYkT/myGnYr9R1j48NOULifFWX8XDncW24UsXVIw0AGY0SjFjy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 23], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["description", "Beatae culpa adipisci eos. Eveniet ut est aut. Aliquam maiores quo maxime."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Suscipit odit dicta cum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consequuntur-a-10' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 24], ["blog_id", 1], ["body", "Est qui veniam aliquam accusamus et quibusdam vero. Vel quis et. Fuga et quibusdam voluptate modi consequatur atque autem. Necessitatibus quae rerum autem sint deserunt occaecati. In ut nulla inventore suscipit veritatis."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["excerpt", "Nemo occaecati esse ad."], ["published", true], ["slug", "consequuntur-a-10"], ["title", "Molestiae repellat aliquam sed et ipsa."], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test10' OR lower(name) = 'rspec10' OR lower(name) = 'ruby10' OR lower(name) = '#rails10') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test10"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec10"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby10"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails10"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'impedit-et-11' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 25], ["blog_id", 1], ["body", "Et dolorem accusantium. Perspiciatis totam optio eaque. Distinctio sunt labore consequatur qui dolore reprehenderit libero. Eum quisquam quos aut corrupti laudantium et architecto. Omnis ipsam distinctio dolore. Velit facilis impedit doloribus blanditiis odit dolor."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["excerpt", "Natus consequatur voluptatem sint."], ["published", true], ["slug", "impedit-et-11"], ["title", "Suscipit et ea cupiditate itaque debitis quisquam aut."], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test11' OR lower(name) = 'rspec11' OR lower(name) = 'ruby11' OR lower(name) = '#rails11') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test11' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test11"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec11"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby11"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails11"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quod-expedita-12' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 26], ["blog_id", 1], ["body", "Quas deserunt neque dolores. Aut harum consectetur nostrum eveniet eos. Incidunt molestiae unde sequi. A sint neque est. Et quaerat eum omnis adipisci non est et. Beatae assumenda quos voluptas numquam. Magnam incidunt quia asperiores repellat vero consequatur."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["excerpt", "Quisquam fuga unde distinctio ut."], ["published", true], ["slug", "quod-expedita-12"], ["title", "Error sit quos dolore dolor aut reiciendis qui."], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test12' OR lower(name) = 'rspec12' OR lower(name) = 'ruby12' OR lower(name) = '#rails12') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test12"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec12"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby12"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails12"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'culpa-corrupti-13' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 27], ["blog_id", 1], ["body", "Error est ut aut architecto. Est molestiae et maxime sapiente iste. Quis illo nostrum corrupti maxime vitae voluptas itaque. Impedit temporibus dolores. Velit mollitia delectus."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["excerpt", "Expedita."], ["published", true], ["slug", "culpa-corrupti-13"], ["title", "Deleniti aspernatur quia voluptatibus."], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test13' OR lower(name) = 'rspec13' OR lower(name) = 'ruby13' OR lower(name) = '#rails13') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails13"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'omnis-nostrum-14' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 28], ["blog_id", 1], ["body", "Doloremque fuga ipsa. Numquam veniam et. Asperiores temporibus deserunt error. Perferendis qui quasi quia nesciunt dicta. Rerum earum architecto eius officia omnis recusandae suscipit. In hic ut ducimus aut. Sapiente aut neque voluptatibus eligendi atque soluta."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["excerpt", "Quia et omnis soluta."], ["published", true], ["slug", "omnis-nostrum-14"], ["title", "Repellat neque rerum."], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test14' OR lower(name) = 'rspec14' OR lower(name) = 'ruby14' OR lower(name) = '#rails14') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test14"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec14"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby14"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails14"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Parameters: {"tag_name"=>"common"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common') Completed 200 OK in 9ms (Views: 2.1ms | ActiveRecord: 0.2ms) Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" JOIN taggings posts_taggings_4ac3c15 ON posts_taggings_4ac3c15.taggable_id = almanac_posts.id AND posts_taggings_4ac3c15.taggable_type = 'Almanac::Post' AND posts_taggings_4ac3c15.tag_id = 1 WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'wilma@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "wilma@example.net"], ["encrypted_password", "$2a$04$uEhuupEkrvBHc3r.P4Fspee5YoV1IwGQ5uqNMfHUrKP6UCbegcUTC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 29], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["description", "Rerum commodi quo error et. Atque nesciunt error laboriosam facilis rerum odio quo. Accusantium velit quos harum animi."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et rerum omnis qui quod ratione similique."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'agustina@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "agustina@example.com"], ["encrypted_password", "$2a$04$YLfrBN0gnBZ38303Q9bZKe8UVFKleelaHKgkwtGb5gaSLATNikVaa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 30], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["description", "Beatae culpa adipisci eos. Eveniet ut est aut. Aliquam maiores quo maxime."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Suscipit odit dicta cum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consequuntur-a-15' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 31], ["blog_id", 1], ["body", "Est qui veniam aliquam accusamus et quibusdam vero. Vel quis et. Fuga et quibusdam voluptate modi consequatur atque autem. Necessitatibus quae rerum autem sint deserunt occaecati. In ut nulla inventore suscipit veritatis."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["excerpt", "Nemo occaecati esse ad."], ["published", true], ["slug", "consequuntur-a-15"], ["title", "Molestiae repellat aliquam sed et ipsa."], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test15' OR lower(name) = 'rspec15' OR lower(name) = 'ruby15' OR lower(name) = '#rails15') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test15"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec15"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby15"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails15"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Testz", "slug"=>"ea-iure-16", "excerpt"=>"Nam.", "body"=>"Natus consequatur voluptatem sint id animi. Quibusdam explicabo corporis quis neque dignissimos facere et. Tenetur nemo nisi repellendus quam recusandae officiis. Ipsa mollitia qui a id qui. Rerum vitae qui. Aut quaerat reprehenderit aut praesentium optio et est. Sed ratione qui nesciunt aut eum sapiente.", "published"=>true, "tag_list"=>"common,test16,rspec16,ruby16,#rails16", "author_id"=>"32", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'ea-iure-16' AND "almanac_posts"."id" != 1) LIMIT 1  (0.1ms) UPDATE "almanac_posts" SET "title" = 'Testz', "slug" = 'ea-iure-16', "excerpt" = 'Nam.', "body" = 'Natus consequatur voluptatem sint id animi. Quibusdam explicabo corporis quis neque dignissimos facere et. Tenetur nemo nisi repellendus quam recusandae officiis. Ipsa mollitia qui a id qui. Rerum vitae qui. Aut quaerat reprehenderit aut praesentium optio et est. Sed ratione qui nesciunt aut eum sapiente.', "author_id" = 32, "updated_at" = '2012-12-28 04:41:01.528402' WHERE "almanac_posts"."id" = 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test16' OR lower(name) = 'rspec16' OR lower(name) = 'ruby16' OR lower(name) = '#rails16') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test16' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test16"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec16"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby16"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails16"]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."tagger_type" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."context" = 'tags' AND "taggings"."tag_id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5) SQL (0.2ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 81ms (ActiveRecord: 3.0ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'charlie.jakubowski@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "charlie.jakubowski@example.net"], ["encrypted_password", "$2a$04$uFy9SJ2e30oCkYNHVNlEnuLvgrhmKnaRdWHRILtrrMGO2OSqB7iz2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 33], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["description", "Sit non fugit eveniet tenetur blanditiis odit et. Molestias ut illum totam. Quidem officia id. Rerum reprehenderit temporibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolorem fugit tempora asperiores numquam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'rerum-nisi-17' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 34], ["blog_id", 1], ["body", "Qui dolor est odio aut magni odit. Quos dolor cum optio et sit. Consequatur nobis aut laboriosam non neque quidem ut. Labore ipsum reiciendis aut cumque sit ut culpa. Soluta distinctio sed quos ut. Non ad aliquam inventore quisquam fugiat. Vitae sequi et maiores harum vero."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["excerpt", "Veritatis."], ["published", true], ["slug", "rerum-nisi-17"], ["title", "Libero qui qui rerum dolor est illum quod."], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test17' OR lower(name) = 'rspec17' OR lower(name) = 'ruby17' OR lower(name) = '#rails17') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test17"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec17"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby17"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails17"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Sapiente labore adipisci facere dignissimos cumque soluta.", "slug"=>"porro-earum-18", "excerpt"=>"Nisi non.", "body"=>"Facilis commodi hic et est qui in voluptas. Voluptate velit tempora ea quas temporibus molestiae cum. Sunt officiis itaque esse necessitatibus. Dolores ratione molestiae culpa. Quidem repellendus maxime.", "published"=>true, "tag_list"=>"common,test18,rspec18,ruby18,#rails18", "author_id"=>"35", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'porro-earum-18' AND "almanac_posts"."id" != 1) LIMIT 1  (0.1ms) UPDATE "almanac_posts" SET "title" = 'Sapiente labore adipisci facere dignissimos cumque soluta.', "slug" = 'porro-earum-18', "excerpt" = 'Nisi non.', "body" = 'Facilis commodi hic et est qui in voluptas. Voluptate velit tempora ea quas temporibus molestiae cum. Sunt officiis itaque esse necessitatibus. Dolores ratione molestiae culpa. Quidem repellendus maxime.', "author_id" = 35, "updated_at" = '2012-12-28 04:41:01.646287' WHERE "almanac_posts"."id" = 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test18' OR lower(name) = 'rspec18' OR lower(name) = 'ruby18' OR lower(name) = '#rails18') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test18' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test18"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec18' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec18"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby18' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby18"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails18' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails18"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."tagger_type" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."context" = 'tags' AND "taggings"."tag_id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 30ms (ActiveRecord: 2.7ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'agustina@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "agustina@example.com"], ["encrypted_password", "$2a$04$reWUz9tlT05ihDE2Bfhu8upehaDmrhXqY4JnozQXWV38zWYWdwNum"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 36], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["description", "Beatae culpa adipisci eos. Eveniet ut est aut. Aliquam maiores quo maxime."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Suscipit odit dicta cum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consequuntur-a-19' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 37], ["blog_id", 1], ["body", "Est qui veniam aliquam accusamus et quibusdam vero. Vel quis et. Fuga et quibusdam voluptate modi consequatur atque autem. Necessitatibus quae rerum autem sint deserunt occaecati. In ut nulla inventore suscipit veritatis."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["excerpt", "Nemo occaecati esse ad."], ["published", true], ["slug", "consequuntur-a-19"], ["title", "Molestiae repellat aliquam sed et ipsa."], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test19' OR lower(name) = 'rspec19' OR lower(name) = 'ruby19' OR lower(name) = '#rails19') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test19"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec19"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby19"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails19"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"ea-iure-20", "excerpt"=>"Nam.", "body"=>"Natus consequatur voluptatem sint id animi. Quibusdam explicabo corporis quis neque dignissimos facere et. Tenetur nemo nisi repellendus quam recusandae officiis. Ipsa mollitia qui a id qui. Rerum vitae qui. Aut quaerat reprehenderit aut praesentium optio et est. Sed ratione qui nesciunt aut eum sapiente.", "published"=>true, "tag_list"=>"common,test20,rspec20,ruby20,#rails20", "author_id"=>"38", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'ea-iure-20' AND "almanac_posts"."id" != 1) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 14ms (Views: 2.4ms | ActiveRecord: 0.6ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'charlie.jakubowski@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "charlie.jakubowski@example.net"], ["encrypted_password", "$2a$04$1/GATnM1V93Hn2acoYtDvOa1rFlaXznVCW/EZulJP0kB89uDJxF6O"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 39], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["description", "Sit non fugit eveniet tenetur blanditiis odit et. Molestias ut illum totam. Quidem officia id. Rerum reprehenderit temporibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolorem fugit tempora asperiores numquam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'rerum-nisi-21' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 40], ["blog_id", 1], ["body", "Qui dolor est odio aut magni odit. Quos dolor cum optio et sit. Consequatur nobis aut laboriosam non neque quidem ut. Labore ipsum reiciendis aut cumque sit ut culpa. Soluta distinctio sed quos ut. Non ad aliquam inventore quisquam fugiat. Vitae sequi et maiores harum vero."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["excerpt", "Veritatis."], ["published", true], ["slug", "rerum-nisi-21"], ["title", "Libero qui qui rerum dolor est illum quod."], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test21' OR lower(name) = 'rspec21' OR lower(name) = 'ruby21' OR lower(name) = '#rails21') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test21"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec21"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby21"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails21"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"nihil-et-22", "excerpt"=>"Unde et amet.", "body"=>"Veritatis quis iste distinctio corrupti exercitationem est. Facilis commodi hic et est qui in voluptas. Voluptate velit tempora ea quas temporibus molestiae cum. Sunt officiis itaque esse necessitatibus. Dolores ratione molestiae culpa. Quidem repellendus maxime. Laborum nihil aut sit corrupti aspernatur autem ab.", "published"=>true, "tag_list"=>"common,test22,rspec22,ruby22,#rails22", "author_id"=>"41", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'nihil-et-22' AND "almanac_posts"."id" != 1) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 13ms (Views: 1.5ms | ActiveRecord: 0.6ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'dina@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "dina@example.net"], ["encrypted_password", "$2a$04$F5G5g3r2n89tQVKVxb6oz.FNdJlp66dgsJgHN4K84zJZqCaPcYJly"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 42], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["description", "Aspernatur expedita non et ab distinctio neque officiis. Vero fuga quas nobis aut omnis. Eos voluptatum ducimus rem et aliquid consequuntur."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ea esse vitae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 7ms (Views: 2.3ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'price.bailey@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "price.bailey@example.net"], ["encrypted_password", "$2a$04$GTvm4rZm1VsWz0M2t9x2T.8t6B3XjhhARnXqdOI17GFgv4bzpO0JG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 43], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["description", "Hic impedit optio sed. Corrupti ut non maxime doloremque assumenda. A aspernatur sint exercitationem explicabo. Nisi alias voluptatem sunt illum labore consectetur cum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Cupiditate sit sint ipsum ut."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-sunt-23' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 44], ["blog_id", 1], ["body", "Culpa omnis commodi nihil est aut. Voluptas cupiditate ea debitis quia quis a temporibus. Minima autem et et dolorem et incidunt illo. Placeat voluptates fugiat et sunt eaque explicabo. Ea sed id sit maiores dolore sint. Dolorem et quisquam. Officia vel minima voluptas nulla enim."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["excerpt", "Voluptas maxime excepturi voluptatem rerum fugit."], ["published", false], ["slug", "qui-sunt-23"], ["title", "Rerum impedit laborum."], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test23' OR lower(name) = 'rspec23' OR lower(name) = 'ruby23' OR lower(name) = '#rails23') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test23"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec23"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby23"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails23"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'culpa-est-24' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 45], ["blog_id", 1], ["body", "Illum expedita nulla nihil magni. Ipsa deserunt omnis similique porro voluptatum. Accusantium et alias asperiores. Repellendus iusto voluptatum corrupti temporibus provident et praesentium. A veritatis debitis est. Id ut qui itaque. Saepe necessitatibus qui rerum magni aut qui."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["excerpt", "Incidunt debitis fugit voluptates id impedit."], ["published", false], ["slug", "culpa-est-24"], ["title", "Qui rerum nemo facere repudiandae totam est."], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test24' OR lower(name) = 'rspec24' OR lower(name) = 'ruby24' OR lower(name) = '#rails24') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test24' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test24"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec24"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby24"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails24"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.2ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'doloremque-temporibus-25' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 46], ["blog_id", 1], ["body", "Nihil repudiandae soluta rerum ab aut molestias. Eum quia est asperiores provident optio ut amet. Omnis consequatur sed dolorem accusantium. Eveniet doloribus quia non at quo et soluta. Voluptatem veritatis est voluptatem quod dolore nostrum."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["excerpt", "Amet."], ["published", false], ["slug", "doloremque-temporibus-25"], ["title", "Dolor possimus porro provident."], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test25' OR lower(name) = 'rspec25' OR lower(name) = 'ruby25' OR lower(name) = '#rails25') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test25"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec25"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby25"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails25"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 7ms (Views: 1.5ms | ActiveRecord: 0.1ms) Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f' ORDER BY written_at DESC, id DESC  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'verla@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "verla@example.com"], ["encrypted_password", "$2a$04$1UXo1lSAMvKKogCxykV8juaNRNlGUqJl8fjovqQD7d1A/g.FTRGWe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 47], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["description", "Qui sequi non aspernatur nemo voluptates. Labore atque qui et ea fugit distinctio est. Incidunt culpa deserunt autem voluptas neque aut accusantium. Animi eos incidunt est."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Eligendi quo soluta assumenda nulla."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'alias-assumenda-26' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 48], ["blog_id", 1], ["body", "Temporibus et pariatur. Possimus quia accusamus et explicabo molestiae omnis expedita. Cupiditate voluptatem et accusantium quisquam. Possimus voluptatem magnam perspiciatis nobis et non consequatur. Voluptatem necessitatibus pariatur eaque omnis optio consequatur fugiat. Quibusdam ab quis asperiores eaque voluptates."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["excerpt", "Et voluptas soluta eius culpa dicta."], ["published", true], ["slug", "alias-assumenda-26"], ["title", "Est aliquam minima velit enim."], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test26' OR lower(name) = 'rspec26' OR lower(name) = 'ruby26' OR lower(name) = '#rails26') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails26"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quaerat-possimus-27' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 49], ["blog_id", 1], ["body", "Sit dicta omnis. Debitis sit magnam est earum atque rerum recusandae. Corporis consequatur omnis. Est aut ut assumenda voluptatem laudantium sequi autem. Voluptatem laborum dolores. Quia consectetur qui eligendi natus consequatur. Odio temporibus accusamus magnam qui."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["excerpt", "Fuga et aspernatur libero numquam minima."], ["published", true], ["slug", "quaerat-possimus-27"], ["title", "Ipsum nesciunt alias eius."], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test27' OR lower(name) = 'rspec27' OR lower(name) = 'ruby27' OR lower(name) = '#rails27') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test27' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails27"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'molestias-ut-28' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 50], ["blog_id", 1], ["body", "Est qui et et porro. Maxime porro est eligendi facilis. Ab enim sunt itaque reprehenderit. Doloremque modi inventore sint. Expedita dignissimos reiciendis quis nihil at ut."], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["excerpt", "Doloribus."], ["published", true], ["slug", "molestias-ut-28"], ["title", "Rerum qui et est aut."], ["updated_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test28' OR lower(name) = 'rspec28' OR lower(name) = 'ruby28' OR lower(name) = '#rails28') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test28"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec28"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby28"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails28"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:01 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'temporibus-voluptatum-29' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 51], ["blog_id", 1], ["body", "Qui et qui quasi enim cupiditate et. Et voluptatem perferendis eligendi rerum non. Quas voluptatem eligendi suscipit accusantium ducimus aut. Necessitatibus est blanditiis ut. Incidunt ratione placeat dignissimos laudantium eos. Consectetur ut cupiditate labore quia officiis. Harum quo consequatur sit ut magni."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["excerpt", "Mollitia ipsam quasi eum."], ["published", true], ["slug", "temporibus-voluptatum-29"], ["title", "Ullam molestiae in ab et mollitia sint omnis."], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test29' OR lower(name) = 'rspec29' OR lower(name) = 'ruby29' OR lower(name) = '#rails29') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails29"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'autem-expedita-30' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 52], ["blog_id", 1], ["body", "Praesentium assumenda omnis quis optio nisi. Eveniet unde qui eum ea. Deleniti eum velit alias. Ab ut est quo saepe necessitatibus cupiditate. Quis necessitatibus cupiditate labore animi sint minima. Sit accusantium est et rerum debitis sint."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["excerpt", "Labore dolores aliquid deserunt error."], ["published", true], ["slug", "autem-expedita-30"], ["title", "Et porro id corrupti magnam."], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test30' OR lower(name) = 'rspec30' OR lower(name) = 'ruby30' OR lower(name) = '#rails30') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails30"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 6ms (Views: 1.4ms | ActiveRecord: 0.1ms) Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'agustina@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "agustina@example.com"], ["encrypted_password", "$2a$04$Q/ROMFCIbFg8J.9UyFwchOqsgpQ6voROGIFe/6KBKfRr0TWC3C8gm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 53], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["description", "Beatae culpa adipisci eos. Eveniet ut est aut. Aliquam maiores quo maxime."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Suscipit odit dicta cum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consequuntur-a-31' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 54], ["blog_id", 1], ["body", "Est qui veniam aliquam accusamus et quibusdam vero. Vel quis et. Fuga et quibusdam voluptate modi consequatur atque autem. Necessitatibus quae rerum autem sint deserunt occaecati. In ut nulla inventore suscipit veritatis."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["excerpt", "Nemo occaecati esse ad."], ["published", true], ["slug", "consequuntur-a-31"], ["title", "Molestiae repellat aliquam sed et ipsa."], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test31' OR lower(name) = 'rspec31' OR lower(name) = 'ruby31' OR lower(name) = '#rails31') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails31"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."post_id" = 1 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 64ms (ActiveRecord: 1.4ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"   (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'gilbert@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "gilbert@example.net"], ["encrypted_password", "$2a$04$bLvce1SJFHIOW85oXgpYMemkm/jJKHM4McyNqHo5Cetq9MIlv34Sy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 55], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["description", "Quis eligendi libero voluptas nobis odio. Aut magni rem soluta similique aliquam. Pariatur enim ullam dolorem officiis consequatur omnis. Quia est sequi dignissimos exercitationem. Aut consequatur deserunt."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Illum autem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'officia-non-32' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 56], ["blog_id", 1], ["body", "Nesciunt aperiam sit cum provident. Numquam nemo et provident aut. Aut voluptatem quia vel nisi molestiae quisquam ratione. Debitis alias aut exercitationem. Quos et omnis."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["excerpt", "Consequatur quidem est et nam et."], ["published", true], ["slug", "officia-non-32"], ["title", "Ipsa qui similique ut."], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test32' OR lower(name) = 'rspec32' OR lower(name) = 'ruby32' OR lower(name) = '#rails32') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test32"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby32"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails32"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."post_id" = 1 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 11ms (ActiveRecord: 0.9ms)  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'agustina@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "agustina@example.com"], ["encrypted_password", "$2a$04$tErks9yvOE00TJkTKaYk.OD6nJ5Jh9BQr181Z7rQoJlnzgNUwAT7K"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.7ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 57], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["description", "Beatae culpa adipisci eos. Eveniet ut est aut. Aliquam maiores quo maxime."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Suscipit odit dicta cum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consequuntur-a-33' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 58], ["blog_id", 1], ["body", "Est qui veniam aliquam accusamus et quibusdam vero. Vel quis et. Fuga et quibusdam voluptate modi consequatur atque autem. Necessitatibus quae rerum autem sint deserunt occaecati. In ut nulla inventore suscipit veritatis."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["excerpt", "Nemo occaecati esse ad."], ["published", true], ["slug", "consequuntur-a-33"], ["title", "Molestiae repellat aliquam sed et ipsa."], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test33' OR lower(name) = 'rspec33' OR lower(name) = 'ruby33' OR lower(name) = '#rails33') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test33"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec33' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec33"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby33"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails33"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "mariane_weinat@example.com"], ["author_name", "Gilbert Bailey"], ["body", "Perspiciatis sequi dolor animi ut ex sit."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "grady@example.org"], ["author_name", "Jon Hilpert"], ["body", "Voluptas cupiditate ea debitis quia quis a temporibus. Minima autem et et dolorem et incidunt illo."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "luciano.hirthe@example.com"], ["author_name", "Kenneth Greenfelder III"], ["body", "Ut illum ut maxime. Officiis distinctio in eveniet laborum. Velit debitis vero consequatur."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "carey.koch@example.com"], ["author_name", "Dolly Bartoletti"], ["body", "In modi tempora delectus. Cum quidem adipisci."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "filiberto@example.net"], ["author_name", "Camilla Baumbach"], ["body", "Enim at qui. Animi praesentium velit. Porro architecto eum rerum rem nulla aut."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "talon.corwin@example.org"], ["author_name", "Khalid Conn"], ["body", "Quia suscipit quas ut magni ut voluptatem. Quisquam repellendus eveniet cupiditate aut unde."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "daphne@example.org"], ["author_name", "Jordyn Prohaska"], ["body", "Et ut doloribus reprehenderit voluptas suscipit cumque. Modi placeat molestiae repellendus."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "june_rau@example.net"], ["author_name", "Adrienne Hansen"], ["body", "Consequatur quae id blanditiis velit. Sequi ipsam explicabo enim. Itaque molestias velit quasi."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "nathanial_ritchie@example.org"], ["author_name", "Keanu Harber"], ["body", "Non ex eos. Aut quas rem suscipit unde. Fugit ad in asperiores soluta voluptatem ipsum."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "rodger@example.net"], ["author_name", "Roel O'Kon V"], ["body", "Enim dolorem omnis."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "deion@example.org"], ["author_name", "Uriel Pfeffer"], ["body", "Non rerum iure. Quam error est inventore aspernatur ut quis."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "alvah@example.com"], ["author_name", "Clemmie Corwin"], ["body", "Doloribus rerum similique excepturi dolorem ut corporis. Neque qui unde."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "frederique_keeling@example.net"], ["author_name", "Theron Okuneva"], ["body", "Hic atque vel sunt ut."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "germaine_marvin@example.com"], ["author_name", "Aurore King Sr."], ["body", "Esse sint error natus dolor molestias quasi."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "desmond@example.net"], ["author_name", "Gennaro Fritsch"], ["body", "Et dolores enim maiores et incidunt optio quos. Sit eligendi aut at in asperiores sapiente voluptates."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'broderick.cole@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "broderick.cole@example.com"], ["encrypted_password", "$2a$04$zKNxkN92pJbMCQeD.JSSgOP2lUivGUq01q0furL4XvKgzCmcEuqSy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 59], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["description", "Porro impedit blanditiis. Distinctio eum rerum et culpa sint cumque aut. Non et cum architecto officiis illo aut. Et culpa accusamus deserunt ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Harum est ut eaque temporibus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptatum-voluptate-34' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 60], ["blog_id", 1], ["body", "Dolores qui maxime est assumenda sint iste. Repellendus quia commodi dignissimos velit veniam. Et vero voluptates sapiente ratione voluptatum. Est qui dolor quia esse. Animi provident accusantium rem unde necessitatibus dolores. Ad quam maxime qui qui ut omnis ea."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["excerpt", "Perspiciatis magni voluptatem."], ["published", true], ["slug", "voluptatum-voluptate-34"], ["title", "Est modi et error."], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test34' OR lower(name) = 'rspec34' OR lower(name) = 'ruby34' OR lower(name) = '#rails34') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails34"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "dorothy_ratke@example.net"], ["author_name", "Vesta Schmidt II"], ["body", "Esse quas repudiandae mollitia. Voluptas provident incidunt omnis ut quas."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "alexandre@example.org"], ["author_name", "Felipe Bechtelar"], ["body", "Repellat alias expedita. Exercitationem atque repellendus quia veritatis."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "earline@example.org"], ["author_name", "Mrs. Fanny Auer"], ["body", "Tempore neque dignissimos error dolorem aliquam id. Commodi officia ut eius ut aliquam. Perferendis dolore aut qui facere nisi tempore quia."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "filiberto.schaefer@example.net"], ["author_name", "Kelley Fay"], ["body", "Quaerat rerum corrupti molestias ea. Sit voluptatem et."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "enid.yost@example.org"], ["author_name", "Vicente Baumbach MD"], ["body", "Voluptatem et repellat. Eligendi laudantium dicta ea natus suscipit qui aliquam. Quam in saepe."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "ferne_schuppe@example.org"], ["author_name", "Lewis Dare I"], ["body", "Veniam ad quod esse aliquam inventore molestiae. Itaque enim a possimus magnam et deleniti iure."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "josephine@example.com"], ["author_name", "Georgiana Shields DVM"], ["body", "Cum rem dolores atque fugit inventore."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "lazaro_wiegand@example.com"], ["author_name", "Nova Jacobs"], ["body", "Ut occaecati eaque dolor eum culpa natus corrupti. Voluptas consequatur suscipit quibusdam."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "christophe@example.org"], ["author_name", "Mrs. Troy Klocko"], ["body", "Cupiditate quia illum nemo repudiandae. Nostrum qui aut."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "hermina@example.com"], ["author_name", "Maggie Anderson"], ["body", "Voluptas velit recusandae cupiditate excepturi ullam odit ut. Accusamus excepturi aperiam debitis voluptate."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "werner@example.com"], ["author_name", "Mr. Tod Vandervort"], ["body", "Labore rerum beatae dolores cum esse ducimus voluptatem."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "garry.pfannerstill@example.org"], ["author_name", "Nicholaus Bernhard"], ["body", "Quo in quia."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "jovani.ratke@example.org"], ["author_name", "Aida Russel"], ["body", "Et ea quis et id ex aliquid dolor."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "corrine@example.org"], ["author_name", "Esperanza Mills Sr."], ["body", "Magni voluptates optio adipisci qui rerum et sit."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "randi@example.net"], ["author_name", "Ms. Tod Ernser"], ["body", "Consequatur esse eum itaque."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'agustina@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "agustina@example.com"], ["encrypted_password", "$2a$04$KuNqfOJCAqeLXMAcU94ZSOKr7fi8FPpgFWCAnv1QIuptNNyp5CfgO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 61], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["description", "Beatae culpa adipisci eos. Eveniet ut est aut. Aliquam maiores quo maxime."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Suscipit odit dicta cum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Testz", "description"=>"Velit recusandae accusamus praesentium sed facilis quaerat. Nobis quis quo id. Aut repellendus ea laboriosam accusamus. Ut qui repellat autem enim ducimus.", "author_id"=>"62"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Testz', "description" = 'Velit recusandae accusamus praesentium sed facilis quaerat. Nobis quis quo id. Aut repellendus ea laboriosam accusamus. Ut qui repellat autem enim ducimus.', "author_id" = 62, "updated_at" = '2012-12-28 04:41:02.370527' WHERE "almanac_blogs"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 7ms (ActiveRecord: 0.4ms) Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'dusty_moen@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "dusty_moen@example.net"], ["encrypted_password", "$2a$04$tUgkGb1j4WPCQB/lQg.lv.VmZuiiEf1WE0djEb6gUWkXyhKTZXniC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 63], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["description", "Vel dolorem in neque veritatis aut. Et qui est dignissimos. Illum autem vitae. Quis eligendi libero voluptas nobis odio."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Debitis vitae officia."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Aut magni rem soluta similique.", "description"=>"Tempora sapiente quam hic. Cumque qui est iusto incidunt soluta voluptas. Nostrum aut at laborum odit.", "author_id"=>"64"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Aut magni rem soluta similique.', "description" = 'Tempora sapiente quam hic. Cumque qui est iusto incidunt soluta voluptas. Nostrum aut at laborum odit.', "author_id" = 64, "updated_at" = '2012-12-28 04:41:02.388475' WHERE "almanac_blogs"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 5ms (ActiveRecord: 0.3ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'agustina@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "agustina@example.com"], ["encrypted_password", "$2a$04$gBkJSW8mYcQmZoGYb5ID.OuDg2E4DoP6t0cGffC4bJn7CddJFNXAS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 65], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["description", "Beatae culpa adipisci eos. Eveniet ut est aut. Aliquam maiores quo maxime."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Suscipit odit dicta cum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Velit recusandae accusamus praesentium sed facilis quaerat. Nobis quis quo id. Aut repellendus ea laboriosam accusamus. Ut qui repellat autem enim ducimus.", "author_id"=>"66"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 8ms (Views: 3.0ms | ActiveRecord: 0.2ms) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'dusty_moen@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "dusty_moen@example.net"], ["encrypted_password", "$2a$04$N2IelmmONd0Fjo6bUUf1xOfhr4aHBY77MeYPGD5qOlwQ4ecjEvBYK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 67], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["description", "Vel dolorem in neque veritatis aut. Et qui est dignissimos. Illum autem vitae. Quis eligendi libero voluptas nobis odio."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Debitis vitae officia."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Sit cupiditate cumque veritatis ab minima. Quaerat dolorum reprehenderit dicta ipsa et aliquid eos. Quas et unde aspernatur sit in maiores labore.", "author_id"=>"68"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'agustina@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "agustina@example.com"], ["encrypted_password", "$2a$04$9mho2UFlcvu7drGE8wtUmuRJVGhkKwgtGsbIhwj2omTyzZsDU2tZS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs" Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Suscipit odit dicta cum.", "description"=>"Beatae culpa adipisci eos. Eveniet ut est aut. Aliquam maiores quo maxime.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["description", "Beatae culpa adipisci eos. Eveniet ut est aut. Aliquam maiores quo maxime."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Suscipit odit dicta cum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 49ms (ActiveRecord: 0.9ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'brando.christiansen@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "brando.christiansen@example.com"], ["encrypted_password", "$2a$04$q0cqhFRpe7rDfm8lGSpDj.MkwtXPpaOuS.5cjyJ.2XdCmdsk/effm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Quidem quae in.", "description"=>"Voluptas odio culpa repellat amet accusamus quia ut. Corrupti ut non maxime doloremque assumenda. A aspernatur sint exercitationem explicabo. Nisi alias voluptatem sunt illum labore consectetur cum. Rerum impedit laborum.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["description", "Voluptas odio culpa repellat amet accusamus quia ut. Corrupti ut non maxime doloremque assumenda. A aspernatur sint exercitationem explicabo. Nisi alias voluptatem sunt illum labore consectetur cum. Rerum impedit laborum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quidem quae in."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 6ms (ActiveRecord: 0.8ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'agustina@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "agustina@example.com"], ["encrypted_password", "$2a$04$7Fa3CRDjbhDMZVMMjUqxFOWa4qAnbDOM2hlM/Zt3oEXdeh3WN5Zie"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs" Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Ea esse vitae unde. Voluptatem magnam voluptatibus excepturi quia at itaque. Quia iusto non id iste minus ducimus est. Aliquam maiores quo maxime. Molestiae repellat aliquam sed et ipsa.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 2.2ms | ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'vicenta@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "vicenta@example.com"], ["encrypted_password", "$2a$04$/6x7vkzw9pcIjnxsynLQv.qj6o/M6JAD7gSFFystkaUdCZeZMNyJO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Illum corrupti rem quo ut consequuntur. Quia fugit nisi ipsam. Occaecati fugiat qui sunt. Adipisci eum cumque.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 1.4ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'reprehenderit-qui-35' LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 71], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["description", "Non id corrupti fugit et et cupiditate nisi. Maiores dolores ducimus incidunt. Ea laudantium ipsum aut reiciendis est corporis. Aspernatur sed totam. Harum possimus ad expedita commodi qui."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quia aliquid iste."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'pariatur-veniam-36' LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'reiciendis-dolore-37' LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 74], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["description", "Odit est optio ut eos eligendi aut. Minus sint et magni inventore nihil velit. Voluptate quasi et. Id nostrum ducimus. Atque perspiciatis similique amet tempore culpa."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dignissimos consequatur."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dicta-unde-38' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 73], ["blog_id", 1], ["body", "Dignissimos nihil in. Deserunt dolores quas. Aperiam nemo reiciendis qui aspernatur. Fugit qui explicabo nobis esse dolore sint eius. Enim libero voluptatem ex rerum inventore autem cumque. Officia maxime quis nostrum sunt dolores architecto."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["excerpt", "Quia."], ["published", true], ["slug", "dicta-unde-38"], ["title", "Omnis assumenda omnis."], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test38' OR lower(name) = 'rspec38' OR lower(name) = 'ruby38' OR lower(name) = '#rails38') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test38"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec38"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails38"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 76], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["description", "Explicabo occaecati sit rerum aut esse doloremque quas. Vel eligendi vitae omnis hic est aut aut. Voluptatibus voluptates ut sint qui iure id. Veritatis mollitia dignissimos."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolore ipsam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'laudantium-itaque-39' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 78], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["description", "Qui et nemo ex doloribus sed. Minima sapiente quia ea. Soluta aut sit facilis voluptates qui explicabo molestiae."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quo praesentium consequatur."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'perspiciatis-id-40' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 79], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["description", "Est maiores molestiae labore. Placeat labore provident. Et officia hic sunt qui doloribus. Quo laudantium doloribus totam ab et tenetur ut. Et maxime nihil."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Nisi aut sit blanditiis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sed-voluptatum-41' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 80], ["blog_id", 1], ["body", "Impedit sed temporibus molestiae accusamus non. Distinctio voluptas dolor neque dolores consequatur. Non enim et aut qui quo voluptates. Qui iste beatae nulla quia voluptatem molestias eligendi. Rerum consequatur qui pariatur minus. Et quia aliquid."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["excerpt", "Consequatur odit."], ["published", true], ["slug", "sed-voluptatum-41"], ["title", "Repellat ea ad delectus voluptatem eligendi quis et."], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test41' OR lower(name) = 'rspec41' OR lower(name) = 'ruby41' OR lower(name) = '#rails41') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test41"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec41"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby41"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails41"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.2ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ratione-facere-42' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 81], ["blog_id", 1], ["body", "Et quo explicabo in sunt consectetur accusantium. Et sint non laborum excepturi voluptatem ut eum. Aut blanditiis aspernatur recusandae deleniti. Qui quibusdam dicta ullam laboriosam. Vitae cumque architecto eius minus rerum dicta nemo. Rem enim quia provident blanditiis voluptates magni delectus."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["excerpt", "Deleniti esse soluta est quos voluptatem."], ["published", true], ["slug", "ratione-facere-42"], ["title", "Nemo molestiae consequatur provident inventore et et."], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test42' OR lower(name) = 'rspec42' OR lower(name) = 'ruby42' OR lower(name) = '#rails42') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test42' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails42"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 83], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["description", "Assumenda quibusdam sit. Consectetur nemo nulla voluptatem molestiae officiis animi aut. Cumque earum impedit dignissimos et et consectetur. Exercitationem et facere voluptatem sint debitis. Id consequatur est asperiores aspernatur."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "At delectus beatae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'non-dolores-43' LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 85], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["description", "Et voluptas maiores nisi occaecati officiis dolores magnam. Nihil dolorem et consectetur dignissimos sed. Esse et dolore error qui dolorem quia et. Ea in voluptatum nihil eum. Provident non fugit adipisci harum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sit modi sunt non illo nostrum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 87], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["description", "Labore aliquid natus assumenda sint esse reiciendis. Illo ipsam illum voluptatum doloribus. Dolor alias a illo ex commodi."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Vel voluptatem dolores provident autem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 89], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["description", "Itaque laudantium numquam quia provident. Quod beatae quas in natus sint quia. Dolores illo perspiciatis recusandae libero. Cupiditate a quae laborum dolorem vitae consequuntur."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quia commodi vero voluptatem sit."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'occaecati-assumenda-44' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 91], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["description", "Ut itaque consequuntur explicabo assumenda deleniti quia qui. Velit voluptatem aut. Est cumque accusamus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et vel similique."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'labore-nostrum-45' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 92], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["description", "Harum molestias commodi. Consequatur aspernatur impedit quo. Odit voluptatum iure. Reprehenderit soluta consequatur sed temporibus quia cupiditate cumque."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "At quaerat veniam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-expedita-46' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 93], ["blog_id", 1], ["body", "Omnis fugit facilis qui nostrum possimus. Et recusandae alias cupiditate ratione ut. Minima perspiciatis magnam rerum cum nemo. Ab eum cum quasi. Vel ut officiis sint saepe quia corporis. Vitae ducimus dolores alias ut voluptates at. Quae iste voluptatem asperiores provident voluptatem."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["excerpt", "Dolor aliquid autem non."], ["published", true], ["slug", "qui-expedita-46"], ["title", "Ut natus officia earum autem error quis."], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test48' OR lower(name) = 'rspec48' OR lower(name) = 'ruby48' OR lower(name) = '#rails48') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails48"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nam-placeat-47' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 94], ["blog_id", 1], ["body", "Et consequatur temporibus. Vitae assumenda ea quia. Repellat ea nihil alias error temporibus. Mollitia corporis accusamus tempore. Quasi qui velit numquam est delectus nemo."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["excerpt", "Consequuntur sed."], ["published", true], ["slug", "nam-placeat-47"], ["title", "Mollitia totam in dolorem consequatur sequi quo."], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test49' OR lower(name) = 'rspec49' OR lower(name) = 'ruby49' OR lower(name) = '#rails49') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test49' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails49"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nulla-culpa-48' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 95], ["blog_id", 1], ["body", "Laborum consequatur id ullam qui culpa velit. Accusamus iusto numquam dolor omnis rerum qui. Distinctio iste numquam modi unde impedit. Dolor tempora iusto ut dignissimos. Voluptatem autem voluptas nulla. Ipsam accusamus consequatur animi."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["excerpt", "Accusamus est aperiam illum aliquam."], ["published", true], ["slug", "nulla-culpa-48"], ["title", "Delectus qui fugit ipsa sit consequuntur odio consequatur."], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test50' OR lower(name) = 'rspec50' OR lower(name) = 'ruby50' OR lower(name) = '#rails50') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails50"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ipsam-dolores-49' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 96], ["blog_id", 1], ["body", "Voluptatibus ipsa velit quidem impedit aut. Porro exercitationem sequi in cumque recusandae quae qui. Molestias excepturi voluptas dicta deserunt architecto ut. Odit aut omnis dolorem quo eius. Labore et sunt consequatur est cum voluptatum tempora. Ut quaerat aut illo delectus corrupti."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["excerpt", "Ab aut et."], ["published", true], ["slug", "ipsam-dolores-49"], ["title", "Ipsa exercitationem culpa."], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test51' OR lower(name) = 'rspec51' OR lower(name) = 'ruby51' OR lower(name) = '#rails51') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails51"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'illo-delectus-50' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 97], ["blog_id", 1], ["body", "Rerum incidunt facilis autem ab perspiciatis odit. Libero accusamus eos expedita inventore nihil sequi ratione. Et non qui. Dolorum voluptatem optio dicta in sint laborum. Ratione cum earum eaque. Cum qui aut eos. Nemo asperiores veniam minima ut molestiae blanditiis."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["excerpt", "Dolore."], ["published", true], ["slug", "illo-delectus-50"], ["title", "Non quam eius cum qui nostrum autem."], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test52' OR lower(name) = 'rspec52' OR lower(name) = 'ruby52' OR lower(name) = '#rails52') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails52"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quidem-nobis-51' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 98], ["blog_id", 1], ["body", "Sed dolorem impedit. Ad error voluptatem. Omnis maiores aliquid nemo ab. Fuga ipsa nemo quaerat et quo qui. Voluptatem in sunt dolorem adipisci minus beatae sed."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["excerpt", "Quos ab."], ["published", true], ["slug", "quidem-nobis-51"], ["title", "Delectus mollitia molestiae."], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test53' OR lower(name) = 'rspec53' OR lower(name) = 'ruby53' OR lower(name) = '#rails53') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails53"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-dolor-52' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 99], ["blog_id", 1], ["body", "Rerum repudiandae rerum officiis libero nisi reiciendis cupiditate. Fugiat rem recusandae. Libero qui eos cupiditate. Distinctio dignissimos reprehenderit itaque soluta quasi ipsam. Cum odit vero sit voluptate molestiae voluptas."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["excerpt", "Quidem exercitationem natus dolor laborum quod."], ["published", true], ["slug", "et-dolor-52"], ["title", "Ut blanditiis iure natus dolorum et."], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test54' OR lower(name) = 'rspec54' OR lower(name) = 'ruby54' OR lower(name) = '#rails54') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails54"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'possimus-animi-53' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 100], ["blog_id", 1], ["body", "Perferendis tempore commodi qui nobis explicabo dolor rem. Libero asperiores minima eligendi vitae sit. Aut quos cumque quia et. Nisi eos labore voluptatem rerum. Quibusdam alias minus recusandae laudantium. Qui illum quidem voluptas."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["excerpt", "Ut id quia."], ["published", true], ["slug", "possimus-animi-53"], ["title", "Cum aut natus incidunt rerum consequatur maxime laboriosam."], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test55' OR lower(name) = 'rspec55' OR lower(name) = 'ruby55' OR lower(name) = '#rails55') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails55"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ipsum-et-54' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 101], ["blog_id", 1], ["body", "Ut occaecati eaque dolor eum culpa natus corrupti. Voluptas consequatur suscipit quibusdam. Totam tempore dolorem similique animi. Non enim et aut qui quo voluptates. Qui iste beatae nulla quia voluptatem molestias eligendi. Rerum consequatur qui pariatur minus."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["excerpt", "Repellat ea ad delectus voluptatem eligendi."], ["published", true], ["slug", "ipsum-et-54"], ["title", "Tempore quibusdam quis similique."], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test56' OR lower(name) = 'rspec56' OR lower(name) = 'ruby56' OR lower(name) = '#rails56') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails56"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'excepturi-est-55' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 102], ["blog_id", 1], ["body", "Debitis neque tenetur molestiae cupiditate. Et quo explicabo in sunt consectetur accusantium. Et sint non laborum excepturi voluptatem ut eum. Aut blanditiis aspernatur recusandae deleniti. Qui quibusdam dicta ullam laboriosam. Vitae cumque architecto eius minus rerum dicta nemo."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["excerpt", "Sed veniam hic illum."], ["published", true], ["slug", "excepturi-est-55"], ["title", "Et quia aliquid."], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test57' OR lower(name) = 'rspec57' OR lower(name) = 'ruby57' OR lower(name) = '#rails57') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails57"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'non-dolores-56' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 103], ["blog_id", 1], ["body", "Corrupti ab et temporibus et error. Distinctio ullam expedita vel. Dolores quod cupiditate aut qui omnis. Totam dolores deleniti numquam dolorum dolor debitis. Rerum consectetur dignissimos voluptates fuga. Enim aut nobis. Deleniti maxime officiis sint dolorem sit excepturi et."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["excerpt", "Quia."], ["published", true], ["slug", "non-dolores-56"], ["title", "Rem enim quia provident blanditiis voluptates magni delectus."], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'possimus-et-57' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 104], ["blog_id", 1], ["body", "Voluptas ab neque. Velit iure in natus quis eveniet aut quisquam. Esse quas quasi id pariatur soluta doloremque placeat. Quasi eveniet est. Cumque iure magnam veritatis autem."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["excerpt", "Qui dolorem praesentium nulla."], ["published", true], ["slug", "possimus-et-57"], ["title", "At delectus beatae non."], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_1607370 ON posts_taggings_1607370.taggable_id = almanac_posts.id AND posts_taggings_1607370.taggable_type = 'Almanac::Post' AND posts_taggings_1607370.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 105], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["description", "Fugit quos dicta. Facere culpa expedita dolorum qui. Accusamus magni id aut non cum. Voluptatem qui quia."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quod perspiciatis sed suscipit et cumque."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'a-qui-58' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 106], ["blog_id", 1], ["body", "Sed sapiente ut. Consequatur vitae dolor sint. Praesentium neque debitis. Ut aliquid autem. Qui quis numquam expedita qui sequi quia sed. Delectus totam doloribus. Et qui facilis qui illum."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["excerpt", "Omnis fugit."], ["published", true], ["slug", "a-qui-58"], ["title", "Laudantium dolores soluta id sed."], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test58' OR lower(name) = 'rspec58' OR lower(name) = 'ruby58' OR lower(name) = '#rails58') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test58"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec58"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails58"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'recusandae-est-59' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 107], ["blog_id", 1], ["body", "Illum qui molestias aut fuga doloremque. Quaerat quia qui sit ut impedit maxime et. Harum rerum accusamus laudantium. Sed et dolore dolores et ut culpa occaecati. Sint qui rerum. Amet rerum eaque quae est fugit aliquam. Nisi quis labore delectus autem dolore."], ["created_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["excerpt", "Molestias distinctio earum maiores et."], ["published", true], ["slug", "recusandae-est-59"], ["title", "Quisquam fuga cupiditate."], ["updated_at", Fri, 28 Dec 2012 04:41:02 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test59' OR lower(name) = 'rspec59' OR lower(name) = 'ruby59' OR lower(name) = '#rails59') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test59' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails59"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'distinctio-et-60' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 108], ["blog_id", 1], ["body", "Facilis porro officiis aliquid aut. Eos autem ut aut sint. Sit qui vel odio tempore possimus impedit suscipit. Praesentium quos nobis. Nihil pariatur labore consequatur sit."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Doloremque."], ["published", true], ["slug", "distinctio-et-60"], ["title", "Fugiat voluptatem repellat culpa cum quis id."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test60' OR lower(name) = 'rspec60' OR lower(name) = 'ruby60' OR lower(name) = '#rails60') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails60"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'tempore-est-61' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 109], ["blog_id", 1], ["body", "Consequuntur aut corporis. Quia saepe tempora quo. Nesciunt ea sapiente nobis. Et ut et. Asperiores amet architecto sit voluptatem impedit quisquam qui."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Iure laboriosam."], ["published", true], ["slug", "tempore-est-61"], ["title", "Et natus corrupti."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test61' OR lower(name) = 'rspec61' OR lower(name) = 'ruby61' OR lower(name) = '#rails61') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails61"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (41.6ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consequuntur-quaerat-62' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 110], ["blog_id", 1], ["body", "Sed qui ea nobis sapiente quo. Sed ut et aut distinctio delectus qui mollitia. Debitis modi id rerum quaerat et ratione. Illo et voluptatibus. Commodi dolorem et dolor ullam. Nihil quo voluptatem. Non praesentium soluta voluptates natus velit."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Quasi ducimus."], ["published", true], ["slug", "consequuntur-quaerat-62"], ["title", "Similique voluptas non molestiae."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test62' OR lower(name) = 'rspec62' OR lower(name) = 'ruby62' OR lower(name) = '#rails62') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails62"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aperiam-in-63' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 111], ["blog_id", 1], ["body", "Adipisci maxime quis commodi. Eum sequi amet saepe sed laborum. Aspernatur facere quos. Et inventore quasi. Veniam animi delectus suscipit ut qui. Ut praesentium maiores numquam sapiente ea suscipit."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Eum omnis et aut consequatur rem."], ["published", true], ["slug", "aperiam-in-63"], ["title", "Dolor aut nobis fugiat."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test63' OR lower(name) = 'rspec63' OR lower(name) = 'ruby63' OR lower(name) = '#rails63') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec63"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails63"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'illo-perspiciatis-64' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 112], ["blog_id", 1], ["body", "In eveniet recusandae consequuntur soluta quia iusto nihil. In quidem nulla. Voluptatem id in. Laborum perspiciatis architecto debitis beatae. Et eos et voluptates voluptatem laudantium. Rem natus amet adipisci nostrum aliquam suscipit. Sunt culpa quas vitae aut."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Aut unde a eum."], ["published", true], ["slug", "illo-perspiciatis-64"], ["title", "Sint quaerat aliquam enim nostrum voluptatibus earum quas."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test64' OR lower(name) = 'rspec64' OR lower(name) = 'ruby64' OR lower(name) = '#rails64') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails64"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quod-nobis-65' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 113], ["blog_id", 1], ["body", "Qui dolorem et. Quisquam dolorum tempora nihil et sit saepe. Sint pariatur quis hic aspernatur ad. Autem harum assumenda quaerat modi. Ut porro aut facere cum incidunt. Quis velit expedita asperiores inventore."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Minima temporibus delectus ipsam."], ["published", true], ["slug", "quod-nobis-65"], ["title", "Quidem quia itaque minus explicabo occaecati pariatur."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test65' OR lower(name) = 'rspec65' OR lower(name) = 'ruby65' OR lower(name) = '#rails65') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails65"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'officia-quia-66' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 114], ["blog_id", 1], ["body", "Omnis impedit voluptatem amet non nobis. Ullam quisquam quam nisi optio distinctio dolorem. Ducimus voluptatem ut. Aut eligendi id libero. Eos sunt inventore."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Ex blanditiis."], ["published", true], ["slug", "officia-quia-66"], ["title", "Voluptatum perspiciatis inventore qui."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test66' OR lower(name) = 'rspec66' OR lower(name) = 'ruby66' OR lower(name) = '#rails66') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails66"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ut-id-67' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 115], ["blog_id", 1], ["body", "Vitae aperiam sed. Perspiciatis voluptas sapiente aut error nulla. Earum nesciunt rerum recusandae vel explicabo vitae architecto. Et et ipsa aut reiciendis ut voluptatibus repudiandae. Velit quia aperiam saepe laborum ut iste. Nemo non est velit pariatur."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Dicta aperiam nihil rem ad."], ["published", true], ["slug", "ut-id-67"], ["title", "Ratione quidem qui necessitatibus."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test67' OR lower(name) = 'rspec67' OR lower(name) = 'ruby67' OR lower(name) = '#rails67') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby67"]] ActsAsTaggableOn::Tag Exists (0.2ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails67"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nam-iusto-68' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 116], ["blog_id", 1], ["body", "Eum praesentium dicta magni earum dolorem dolor doloribus. Distinctio accusantium voluptatem est aut. Voluptates est et cupiditate officia ut. Blanditiis molestiae facere. Laborum sed impedit corrupti repellat reprehenderit."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Porro et."], ["published", false], ["slug", "nam-iusto-68"], ["title", "Cum delectus expedita."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test68' OR lower(name) = 'rspec68' OR lower(name) = 'ruby68' OR lower(name) = '#rails68') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test68' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails68"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 42 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 42], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 43 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 43], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 44 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 44], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 45 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 45], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptatibus-vitae-69' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 117], ["blog_id", 1], ["body", "Nostrum magnam quia incidunt suscipit. Voluptas cumque incidunt iste unde dolore ut itaque. Sed et qui facilis molestias aut molestiae corporis. Non ipsa architecto iste voluptatem assumenda delectus. Provident qui saepe ea eaque quibusdam. Incidunt est velit omnis porro sint."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Aliquid quibusdam dolorem vel."], ["published", false], ["slug", "voluptatibus-vitae-69"], ["title", "Inventore voluptatem et perspiciatis ad suscipit veritatis mollitia."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test69' OR lower(name) = 'rspec69' OR lower(name) = 'ruby69' OR lower(name) = '#rails69') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails69"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 46 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 46], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 47 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 47], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 48 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 48], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 49 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 49], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_442e9e1 ON posts_taggings_442e9e1.taggable_id = almanac_posts.id AND posts_taggings_442e9e1.taggable_type = 'Almanac::Post' AND posts_taggings_442e9e1.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 118], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["description", "Deserunt id non sint minus. Nesciunt consequatur occaecati sed voluptatem explicabo. Ad maxime vel aut. Ut iusto voluptates similique occaecati."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Doloremque tenetur et quia."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'doloremque-qui-70' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 119], ["blog_id", 1], ["body", "Omnis fugit facilis qui nostrum possimus. Et recusandae alias cupiditate ratione ut. Minima perspiciatis magnam rerum cum nemo. Ab eum cum quasi. Vel ut officiis sint saepe quia corporis. Vitae ducimus dolores alias ut voluptates at. Quae iste voluptatem asperiores provident voluptatem."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Totam."], ["published", true], ["slug", "doloremque-qui-70"], ["title", "Molestias non quis molestiae."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test70' OR lower(name) = 'rspec70' OR lower(name) = 'ruby70' OR lower(name) = '#rails70') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails70"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nam-placeat-71' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 120], ["blog_id", 1], ["body", "Et consequatur temporibus. Vitae assumenda ea quia. Repellat ea nihil alias error temporibus. Mollitia corporis accusamus tempore. Quasi qui velit numquam est delectus nemo."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Consequuntur sed."], ["published", true], ["slug", "nam-placeat-71"], ["title", "Mollitia totam in dolorem consequatur sequi quo."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test71' OR lower(name) = 'rspec71' OR lower(name) = 'ruby71' OR lower(name) = '#rails71') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test71' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails71"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nulla-culpa-72' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 121], ["blog_id", 1], ["body", "Laborum consequatur id ullam qui culpa velit. Accusamus iusto numquam dolor omnis rerum qui. Distinctio iste numquam modi unde impedit. Dolor tempora iusto ut dignissimos. Voluptatem autem voluptas nulla. Ipsam accusamus consequatur animi."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Accusamus est aperiam illum aliquam."], ["published", true], ["slug", "nulla-culpa-72"], ["title", "Delectus qui fugit ipsa sit consequuntur odio consequatur."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test72' OR lower(name) = 'rspec72' OR lower(name) = 'ruby72' OR lower(name) = '#rails72') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec72"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby72"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails72"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ipsam-dolores-73' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 122], ["blog_id", 1], ["body", "Voluptatibus ipsa velit quidem impedit aut. Porro exercitationem sequi in cumque recusandae quae qui. Molestias excepturi voluptas dicta deserunt architecto ut. Odit aut omnis dolorem quo eius. Labore et sunt consequatur est cum voluptatum tempora. Ut quaerat aut illo delectus corrupti."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Ab aut et."], ["published", false], ["slug", "ipsam-dolores-73"], ["title", "Ipsa exercitationem culpa."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test73' OR lower(name) = 'rspec73' OR lower(name) = 'ruby73' OR lower(name) = '#rails73') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test73' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails73"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'illo-delectus-74' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 123], ["blog_id", 1], ["body", "Rerum incidunt facilis autem ab perspiciatis odit. Libero accusamus eos expedita inventore nihil sequi ratione. Et non qui. Dolorum voluptatem optio dicta in sint laborum. Ratione cum earum eaque. Cum qui aut eos. Nemo asperiores veniam minima ut molestiae blanditiis."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Dolore."], ["published", false], ["slug", "illo-delectus-74"], ["title", "Non quam eius cum qui nostrum autem."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test74' OR lower(name) = 'rspec74' OR lower(name) = 'ruby74' OR lower(name) = '#rails74') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails74"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quidem-nobis-75' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 124], ["blog_id", 1], ["body", "Sed dolorem impedit. Ad error voluptatem. Omnis maiores aliquid nemo ab. Fuga ipsa nemo quaerat et quo qui. Voluptatem in sunt dolorem adipisci minus beatae sed."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Quos ab."], ["published", false], ["slug", "quidem-nobis-75"], ["title", "Delectus mollitia molestiae."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test75' OR lower(name) = 'rspec75' OR lower(name) = 'ruby75' OR lower(name) = '#rails75') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails75"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f'  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 125], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["description", "Harum molestias commodi. Consequatur aspernatur impedit quo. Odit voluptatum iure. Reprehenderit soluta consequatur sed temporibus quia cupiditate cumque."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "At quaerat veniam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-expedita-76' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 126], ["blog_id", 1], ["body", "Omnis fugit facilis qui nostrum possimus. Et recusandae alias cupiditate ratione ut. Minima perspiciatis magnam rerum cum nemo. Ab eum cum quasi. Vel ut officiis sint saepe quia corporis. Vitae ducimus dolores alias ut voluptates at. Quae iste voluptatem asperiores provident voluptatem."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Dolor aliquid autem non."], ["published", true], ["slug", "qui-expedita-76"], ["title", "Ut natus officia earum autem error quis."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test76' OR lower(name) = 'rspec76' OR lower(name) = 'ruby76' OR lower(name) = '#rails76') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test76"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec76"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby76"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails76"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nam-placeat-77' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 127], ["blog_id", 1], ["body", "Et consequatur temporibus. Vitae assumenda ea quia. Repellat ea nihil alias error temporibus. Mollitia corporis accusamus tempore. Quasi qui velit numquam est delectus nemo."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Consequuntur sed."], ["published", true], ["slug", "nam-placeat-77"], ["title", "Mollitia totam in dolorem consequatur sequi quo."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test77' OR lower(name) = 'rspec77' OR lower(name) = 'ruby77' OR lower(name) = '#rails77') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test77' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test77"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec77"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby77"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails77"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nulla-culpa-78' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 128], ["blog_id", 1], ["body", "Laborum consequatur id ullam qui culpa velit. Accusamus iusto numquam dolor omnis rerum qui. Distinctio iste numquam modi unde impedit. Dolor tempora iusto ut dignissimos. Voluptatem autem voluptas nulla. Ipsam accusamus consequatur animi."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Accusamus est aperiam illum aliquam."], ["published", true], ["slug", "nulla-culpa-78"], ["title", "Delectus qui fugit ipsa sit consequuntur odio consequatur."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test78' OR lower(name) = 'rspec78' OR lower(name) = 'ruby78' OR lower(name) = '#rails78') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test78"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec78"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby78"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails78"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ipsam-dolores-79' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 129], ["blog_id", 1], ["body", "Voluptatibus ipsa velit quidem impedit aut. Porro exercitationem sequi in cumque recusandae quae qui. Molestias excepturi voluptas dicta deserunt architecto ut. Odit aut omnis dolorem quo eius. Labore et sunt consequatur est cum voluptatum tempora. Ut quaerat aut illo delectus corrupti."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Ab aut et."], ["published", true], ["slug", "ipsam-dolores-79"], ["title", "Ipsa exercitationem culpa."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test79' OR lower(name) = 'rspec79' OR lower(name) = 'ruby79' OR lower(name) = '#rails79') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby79' LIMIT 1 SQL (0.2ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails79"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'illo-delectus-80' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 130], ["blog_id", 1], ["body", "Rerum incidunt facilis autem ab perspiciatis odit. Libero accusamus eos expedita inventore nihil sequi ratione. Et non qui. Dolorum voluptatem optio dicta in sint laborum. Ratione cum earum eaque. Cum qui aut eos. Nemo asperiores veniam minima ut molestiae blanditiis."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Dolore."], ["published", false], ["slug", "illo-delectus-80"], ["title", "Non quam eius cum qui nostrum autem."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test80' OR lower(name) = 'rspec80' OR lower(name) = 'ruby80' OR lower(name) = '#rails80') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test80"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec80"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby80"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails80"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quidem-nobis-81' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 131], ["blog_id", 1], ["body", "Sed dolorem impedit. Ad error voluptatem. Omnis maiores aliquid nemo ab. Fuga ipsa nemo quaerat et quo qui. Voluptatem in sunt dolorem adipisci minus beatae sed."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Quos ab."], ["published", false], ["slug", "quidem-nobis-81"], ["title", "Delectus mollitia molestiae."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test81' OR lower(name) = 'rspec81' OR lower(name) = 'ruby81' OR lower(name) = '#rails81') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test81"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec81"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby81"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails81"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-dolor-82' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 132], ["blog_id", 1], ["body", "Rerum repudiandae rerum officiis libero nisi reiciendis cupiditate. Fugiat rem recusandae. Libero qui eos cupiditate. Distinctio dignissimos reprehenderit itaque soluta quasi ipsam. Cum odit vero sit voluptate molestiae voluptas."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Quidem exercitationem natus dolor laborum quod."], ["published", false], ["slug", "et-dolor-82"], ["title", "Ut blanditiis iure natus dolorum et."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test82' OR lower(name) = 'rspec82' OR lower(name) = 'ruby82' OR lower(name) = '#rails82') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test82"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec82"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby82"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails82"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 't'  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'agustina@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "agustina@example.com"], ["encrypted_password", "$2a$04$Qii1ocEEEqgjKRqGzP0zXuDZOgYqqY8iNPeVwPlt9zGa5GW9nxFfG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.6ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 134], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["description", "Rem maxime et occaecati ad neque. Deleniti culpa animi fugiat laudantium. Ut alias expedita ex quaerat quia quasi. Et dolorem accusantium."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Officiis et iusto voluptates deleniti fugiat."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'id-repellat-83' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 133], ["blog_id", 1], ["body", "Nam placeat harum laboriosam modi dolor quia. Autem fuga voluptatum et ut tempora reiciendis necessitatibus. Eum reiciendis voluptatum. Aperiam sunt est harum voluptas rerum consequuntur. Quibusdam quis nostrum sint consequatur cupiditate voluptatem error. Nulla iure enim aut. Et odit quia quia ex maiores eum dicta."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Aspernatur expedita non et ab distinctio."], ["published", true], ["slug", "id-repellat-83"], ["title", "Suscipit odit dicta cum qui."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test83' OR lower(name) = 'rspec83' OR lower(name) = 'ruby83' OR lower(name) = '#rails83') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test83' LIMIT 1 SQL (0.2ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test83"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby83"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails83"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_comments"  Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Ms. Piper Lynch", "author_email"=>"sedrick.zemlak@example.net", "body"=>"Distinctio numquam sit soluta."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "sedrick.zemlak@example.net"], ["author_name", "Ms. Piper Lynch"], ["body", "Distinctio numquam sit soluta."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/id-repellat-83 Completed 302 Found in 8ms (ActiveRecord: 0.5ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"   (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'stephany@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "stephany@example.org"], ["encrypted_password", "$2a$04$s1iDn5iejfQDE/KDxF1fn.yPck6NW2FtUxh/K1Rwvxd1hBkPtw6lK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 136], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["description", "Est voluptates dicta adipisci maiores qui. Deserunt in veritatis perferendis molestiae quibusdam eaque. Corporis quibusdam rerum voluptatum officia dicta tempora. Repudiandae dolorum aut. Tempora vel tenetur culpa iste dolores debitis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Expedita voluptates autem consequatur vel aliquam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ut-fuga-84' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 135], ["blog_id", 1], ["body", "Veniam voluptatem ut dignissimos aut. Molestias provident sint. Vel porro consequuntur asperiores. Iure aliquam provident est. Rem dolore in. In rerum eum corrupti ut esse ipsam fuga. Non numquam qui quibusdam voluptatibus."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Est consequuntur harum dolorem qui."], ["published", true], ["slug", "ut-fuga-84"], ["title", "Dolore fuga et."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test84' OR lower(name) = 'rspec84' OR lower(name) = 'ruby84' OR lower(name) = '#rails84') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec84"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails84"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Asa Hoppe", "author_email"=>"norma@example.org", "body"=>"Quia pariatur delectus ducimus id. Iste non quia sint laboriosam. Ipsum beatae ipsam excepturi eveniet omnis deserunt."}, "post_slug"=>"ut-fuga-84"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 404 Not Found in 4ms  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'agustina@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "agustina@example.com"], ["encrypted_password", "$2a$04$D5yw3h1ipU/oJPcNFY5uX.SJwKzFIChgIepLMR1ZckQFaPctn95yq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 138], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["description", "Rem maxime et occaecati ad neque. Deleniti culpa animi fugiat laudantium. Ut alias expedita ex quaerat quia quasi. Et dolorem accusantium."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Officiis et iusto voluptates deleniti fugiat."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'id-repellat-85' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 137], ["blog_id", 1], ["body", "Nam placeat harum laboriosam modi dolor quia. Autem fuga voluptatum et ut tempora reiciendis necessitatibus. Eum reiciendis voluptatum. Aperiam sunt est harum voluptas rerum consequuntur. Quibusdam quis nostrum sint consequatur cupiditate voluptatem error. Nulla iure enim aut. Et odit quia quia ex maiores eum dicta."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Aspernatur expedita non et ab distinctio."], ["published", true], ["slug", "id-repellat-85"], ["title", "Suscipit odit dicta cum qui."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test85' OR lower(name) = 'rspec85' OR lower(name) = 'ruby85' OR lower(name) = '#rails85') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test85"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails85"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_comments"  Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Ms. Piper Lynch", "author_email"=>"sedrick.zemlak@example.net", "body"=>nil}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Redirected to http://test.host/almanac/id-repellat-85 Completed 302 Found in 7ms (ActiveRecord: 0.2ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'amely@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "amely@example.net"], ["encrypted_password", "$2a$04$XgGKkpitsBz3Cn7hX1mrIuazP5nxW8yK6qZldoMmSHbgMNzHWaolO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 140], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["description", "Alias eveniet commodi in eum et sint dicta. Ut autem consequuntur nisi eum aut. Expedita voluptates autem consequatur vel aliquam eius. Est voluptates dicta adipisci maiores qui."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Rem dolore."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eveniet-aut-86' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 139], ["blog_id", 1], ["body", "Velit debitis vero consequatur. Veniam voluptatem ut dignissimos aut. Molestias provident sint. Vel porro consequuntur asperiores. Iure aliquam provident est."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Voluptates."], ["published", true], ["slug", "eveniet-aut-86"], ["title", "Ipsum dignissimos repellendus nulla."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test86' OR lower(name) = 'rspec86' OR lower(name) = 'ruby86' OR lower(name) = '#rails86') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test86"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec86"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby86"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails86"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Monte Schultz", "author_email"=>"luther_kunde@example.net", "body"=>"Dolores ut quod quas quia expedita repellat."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "luther_kunde@example.net"], ["author_name", "Monte Schultz"], ["body", "Dolores ut quod quas quia expedita repellat."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/eveniet-aut-86 Completed 302 Found in 7ms (ActiveRecord: 0.4ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'agustina@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "agustina@example.com"], ["encrypted_password", "$2a$04$hfoDGXA8TkZ4x0g8HZC5ieUqgEBYv5.1XxAzP4bpGBHEOEvPy3Tae"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 142], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["description", "Rem maxime et occaecati ad neque. Deleniti culpa animi fugiat laudantium. Ut alias expedita ex quaerat quia quasi. Et dolorem accusantium."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Officiis et iusto voluptates deleniti fugiat."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'id-repellat-87' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 141], ["blog_id", 1], ["body", "Nam placeat harum laboriosam modi dolor quia. Autem fuga voluptatum et ut tempora reiciendis necessitatibus. Eum reiciendis voluptatum. Aperiam sunt est harum voluptas rerum consequuntur. Quibusdam quis nostrum sint consequatur cupiditate voluptatem error. Nulla iure enim aut. Et odit quia quia ex maiores eum dicta."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Aspernatur expedita non et ab distinctio."], ["published", true], ["slug", "id-repellat-87"], ["title", "Suscipit odit dicta cum qui."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test87' OR lower(name) = 'rspec87' OR lower(name) = 'ruby87' OR lower(name) = '#rails87') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails87"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "sedrick.zemlak@example.net"], ["author_name", "Ms. Piper Lynch"], ["body", "Distinctio numquam sit soluta."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments" Processing by Almanac::CommentsController#destroy as HTML Parameters: {"id"=>"1", "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "almanac_comments" WHERE "almanac_comments"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/1 Completed 302 Found in 7ms (ActiveRecord: 0.4ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'stephany@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "stephany@example.org"], ["encrypted_password", "$2a$04$A6xC8zboKjCVqDWK9Pd4z.NW0SQCUlwZw4sjfs55e0mEZwl0xnP8a"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 144], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["description", "Est voluptates dicta adipisci maiores qui. Deserunt in veritatis perferendis molestiae quibusdam eaque. Corporis quibusdam rerum voluptatum officia dicta tempora. Repudiandae dolorum aut. Tempora vel tenetur culpa iste dolores debitis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Expedita voluptates autem consequatur vel aliquam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ut-fuga-88' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 143], ["blog_id", 1], ["body", "Veniam voluptatem ut dignissimos aut. Molestias provident sint. Vel porro consequuntur asperiores. Iure aliquam provident est. Rem dolore in. In rerum eum corrupti ut esse ipsam fuga. Non numquam qui quibusdam voluptatibus."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["excerpt", "Est consequuntur harum dolorem qui."], ["published", true], ["slug", "ut-fuga-88"], ["title", "Dolore fuga et."], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test88' OR lower(name) = 'rspec88' OR lower(name) = 'ruby88' OR lower(name) = '#rails88') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test88"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby88"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails88"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "norma@example.org"], ["author_name", "Asa Hoppe"], ["body", "Quia pariatur delectus ducimus id. Iste non quia sint laboriosam. Ipsum beatae ipsam excepturi eveniet omnis deserunt."], ["created_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#destroy as HTML Parameters: {"id"=>"1", "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) DELETE FROM "almanac_comments" WHERE "almanac_comments"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/1 Completed 302 Found in 6ms (ActiveRecord: 0.3ms)  (0.6ms) rollback transaction Connecting to database specified by database.yml  (1.3ms) DELETE FROM "users";  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';  (1.1ms) DELETE FROM "almanac_posts";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_posts';  (1.3ms) DELETE FROM "almanac_images";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_images';  (0.7ms) DELETE FROM "tags";  (0.1ms) DELETE FROM sqlite_sequence where name = 'tags';  (0.7ms) DELETE FROM "taggings";  (0.1ms) DELETE FROM sqlite_sequence where name = 'taggings';  (0.6ms) DELETE FROM "almanac_comments";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_comments';  (0.5ms) DELETE FROM "almanac_blogs";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_blogs';  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (1.7ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (5.1ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 2], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:22 UTC +00:00], ["description", "Illum quo dolorem est sit et nihil voluptas. Maiores et sunt hic quo placeat quasi pariatur. Voluptatem ab sunt expedita aut nihil. Reprehenderit assumenda rerum distinctio omnis eum. A occaecati nostrum ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Similique id et explicabo perspiciatis voluptate aut."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'delectus-in-1' LIMIT 1 SQL (0.6ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Quia porro doloribus. Nostrum blanditiis porro magnam incidunt doloremque quibusdam voluptatem. Labore ratione est. Sequi tempore illo ducimus temporibus hic. Dolor vel dolor non expedita perferendis quo."], ["created_at", Fri, 28 Dec 2012 04:41:22 UTC +00:00], ["excerpt", "Deleniti iure."], ["published", true], ["slug", "delectus-in-1"], ["title", "Magni dicta quo ea in sed."], ["updated_at", Fri, 28 Dec 2012 04:41:22 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test1' OR lower(name) = 'rspec1' OR lower(name) = 'ruby1' OR lower(name) = '#rails1') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails1"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 4], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["description", "Consequatur dignissimos blanditiis quaerat. Quod esse ut ut dolorem dolores. Deleniti nulla labore totam tempora reprehenderit nesciunt et. Officiis et qui explicabo magni. Est illo deserunt quis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quis quasi nihil aut labore."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'est-voluptatibus-2' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 3], ["blog_id", 1], ["body", "Doloremque dolor suscipit. Quia dolorem explicabo quo eaque quibusdam. Similique fuga consequatur culpa dolores sit rerum. Magni architecto earum voluptatum qui dolorem repudiandae. Aspernatur molestiae velit accusantium."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["excerpt", "Velit vitae ratione."], ["published", true], ["slug", "est-voluptatibus-2"], ["title", "Modi facere unde optio aspernatur possimus labore."], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test2' OR lower(name) = 'rspec2' OR lower(name) = 'ruby2' OR lower(name) = '#rails2') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test2"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec2"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby2"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails2"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 6], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["description", "Quia tempore amet minima. Iure rerum possimus quia id tenetur quia. Eos expedita illo non sunt. Assumenda id alias similique quisquam nostrum. A adipisci eligendi quo eum beatae quos."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aut saepe."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'explicabo-aut-3' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 5], ["blog_id", 1], ["body", "Voluptas iure voluptates. Qui eaque laboriosam dolorum repudiandae molestiae perferendis. Cupiditate quidem voluptatem iure quisquam. Suscipit et officiis nulla dolore in quia quo. Ut enim accusamus iure eius. Cum ea perferendis voluptatem est. Et provident reprehenderit possimus voluptatibus quis corrupti in."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["excerpt", "Iste aut voluptatem sed."], ["published", true], ["slug", "explicabo-aut-3"], ["title", "Nesciunt voluptas distinctio expedita."], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test3' OR lower(name) = 'rspec3' OR lower(name) = 'ruby3' OR lower(name) = '#rails3') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails3"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 8], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["description", "Molestias quis totam a natus molestiae omnis. Pariatur at aut ut delectus inventore. Pariatur soluta ex. Omnis culpa molestiae eos."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aut consequatur vel magnam rerum molestias adipisci."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'commodi-porro-4' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 7], ["blog_id", 1], ["body", "Et explicabo distinctio est. Veritatis ipsum sunt sit beatae. Porro autem et. Sed porro voluptatibus aut nisi. Ad consequatur praesentium corporis."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["excerpt", "Illum numquam enim."], ["published", true], ["slug", "commodi-porro-4"], ["title", "Et et earum ab."], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test4' OR lower(name) = 'rspec4' OR lower(name) = 'ruby4' OR lower(name) = '#rails4') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails4"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "deshawn@example.com"], ["author_name", "Dane Auer"], ["body", "Et ipsum aut mollitia et dolor. Eligendi distinctio exercitationem. Vel quia a modi hic aut voluptatem."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" ORDER BY id ASC  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 10], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["description", "Nobis eos in deleniti. Rem consequuntur voluptas. Magni officia aliquid et ea omnis. Illum at ut ducimus libero hic."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sapiente illo magnam rerum dignissimos corrupti."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'iure-provident-5' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 9], ["blog_id", 1], ["body", "Debitis qui aperiam quibusdam aut autem quam. Doloremque libero pariatur sit dolorem et est. Nihil laboriosam quis doloremque deleniti ut. Alias quia qui animi quae dolore sit pariatur. Qui nihil earum molestiae quas ab. Consequuntur quia nemo quam ducimus nesciunt. Quas facilis nobis libero."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["excerpt", "Sunt necessitatibus aut."], ["published", true], ["slug", "iure-provident-5"], ["title", "Ad et qui fugiat vitae aut eaque."], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test5' OR lower(name) = 'rspec5' OR lower(name) = 'ruby5' OR lower(name) = '#rails5') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails5"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "wiley@example.org"], ["author_name", "Leo Ryan"], ["body", "Quasi et itaque rem id dolores."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "colleen@example.net"], ["author_name", "Brooks Rohan"], ["body", "Nulla non autem nemo omnis vitae iste dolor."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "roxanne@example.net"], ["author_name", "Miss Parker Lebsack"], ["body", "Sint sunt non modi."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "rowena@example.org"], ["author_name", "Claudie Romaguera"], ["body", "Ipsam amet magnam provident. Aut possimus qui voluptatibus magnam et. Voluptas consequatur aliquid magni amet."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "tamia@example.net"], ["author_name", "Kasey Glover"], ["body", "Nemo commodi alias impedit consequatur qui sit. Est dolor et est. Iste architecto error."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "tanner.brakus@example.net"], ["author_name", "Mr. Edgar Abshire"], ["body", "Blanditiis a sed perspiciatis qui repellat distinctio quae. Natus debitis magnam et qui alias. Ullam autem deserunt qui rem omnis qui non."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "carlos.rutherford@example.net"], ["author_name", "Garnett Runolfsdottir"], ["body", "Cupiditate laudantium qui ducimus sapiente et sit."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "freddie@example.com"], ["author_name", "Dr. Hiram Kerluke"], ["body", "Ipsum sunt omnis. Corporis exercitationem molestias. Optio distinctio deleniti iusto illum autem."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "rogelio.klocko@example.com"], ["author_name", "Kaylah Emmerich"], ["body", "Et possimus nihil minima quo. Possimus cumque voluptate dolorem non ex."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "zelma_mcglynn@example.org"], ["author_name", "Enid Simonis"], ["body", "Consequatur debitis excepturi sint. Doloribus dolorum dolores sed ratione autem."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "travis.waelchi@example.org"], ["author_name", "Garnet Stoltenberg"], ["body", "Quo neque cum quos ut rerum odit totam. Eos animi sed."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "salvatore_stanton@example.net"], ["author_name", "Creola Feil"], ["body", "Laborum voluptatem est aut sunt est officiis."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "prince@example.org"], ["author_name", "Ebony Bailey"], ["body", "Animi totam odit cumque impedit maiores fugit. Voluptas sapiente neque aliquam sit consequatur."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "wanda.lang@example.com"], ["author_name", "Kaitlin Donnelly Jr."], ["body", "Totam voluptatem asperiores sed. Laudantium at doloribus et veritatis corporis corrupti."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "stuart@example.org"], ["author_name", "Katarina Huels"], ["body", "Provident omnis molestiae quisquam aut dolores voluptatem voluptate."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments" WHERE "almanac_comments"."spam" = 't'  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ward.donnelly@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ward.donnelly@example.net"], ["encrypted_password", "$2a$04$vMRXKyZALgCNZmPxanChNOHKekVugsrdon6eBigx4sGNK/1A/Kw36"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 12], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["description", "Est voluptates ipsam quas suscipit. Illum quo dolorem est sit et nihil voluptas. Maiores et sunt hic quo placeat quasi pariatur. Voluptatem ab sunt expedita aut nihil."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolor vel dolor non expedita perferendis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ipsa-aut-6' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 11], ["blog_id", 1], ["body", "A omnis aut. Facere est blanditiis dignissimos incidunt est porro minima. Amet aut quis exercitationem omnis maxime non. Nostrum blanditiis porro magnam incidunt doloremque quibusdam voluptatem. Labore ratione est. Sequi tempore illo ducimus temporibus hic."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["excerpt", "Tempore."], ["published", true], ["slug", "ipsa-aut-6"], ["title", "Sint ab et accusamus sed dolorum aliquid ad."], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test6' OR lower(name) = 'rspec6' OR lower(name) = 'ruby6' OR lower(name) = '#rails6') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test6"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec6"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby6"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails6"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Stephan Adams II", "author_email"=>"nikita@example.org", "body"=>"Ullam et dolor deserunt soluta tempora rerum ipsam. Ducimus consequatur consequatur totam."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "nikita@example.org"], ["author_name", "Stephan Adams II"], ["body", "Ullam et dolor deserunt soluta tempora rerum ipsam. Ducimus consequatur consequatur totam."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ipsa-aut-6 Completed 302 Found in 8ms (ActiveRecord: 0.6ms)  (0.0ms) SELECT COUNT(*) FROM "almanac_comments"   (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jaunita@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jaunita@example.net"], ["encrypted_password", "$2a$04$TPGHM5NwP6wJGhECvyJ6.uCzMqHvWfSvFq5ZGHP56lNWzVEV5tsMm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 14], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["description", "Consequuntur dignissimos fugit nulla vel. Voluptatem optio eius velit molestias rerum tenetur. Ut vitae fugiat ut ipsa in et."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolores sed quae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ut-quia-7' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 13], ["blog_id", 1], ["body", "Voluptates exercitationem voluptate qui autem quos vel pariatur. Soluta voluptatem corporis sit rerum aut dolores. Aut aliquid inventore velit eum. Alias deserunt sit. Deleniti et dolor eius ut quaerat distinctio."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["excerpt", "Debitis."], ["published", true], ["slug", "ut-quia-7"], ["title", "Autem nemo maxime."], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test7' OR lower(name) = 'rspec7' OR lower(name) = 'ruby7' OR lower(name) = '#rails7') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails7"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Unique Heathcote", "author_email"=>"josie@example.com", "body"=>"Distinctio qui molestiae."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "josie@example.com"], ["author_name", "Unique Heathcote"], ["body", "Distinctio qui molestiae."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ut-quia-7 Completed 302 Found in 7ms (ActiveRecord: 0.4ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ward.donnelly@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ward.donnelly@example.net"], ["encrypted_password", "$2a$04$kbyyjJ3.lnrQuHVlNJ3.guIlBJVoaQghG6LEpPnwbkyqAsN8DJvVq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 16], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["description", "Est voluptates ipsam quas suscipit. Illum quo dolorem est sit et nihil voluptas. Maiores et sunt hic quo placeat quasi pariatur. Voluptatem ab sunt expedita aut nihil."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolor vel dolor non expedita perferendis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ipsa-aut-8' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 15], ["blog_id", 1], ["body", "A omnis aut. Facere est blanditiis dignissimos incidunt est porro minima. Amet aut quis exercitationem omnis maxime non. Nostrum blanditiis porro magnam incidunt doloremque quibusdam voluptatem. Labore ratione est. Sequi tempore illo ducimus temporibus hic."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["excerpt", "Tempore."], ["published", true], ["slug", "ipsa-aut-8"], ["title", "Sint ab et accusamus sed dolorum aliquid ad."], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test8' OR lower(name) = 'rspec8' OR lower(name) = 'ruby8' OR lower(name) = '#rails8') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails8"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Stephan Adams II", "author_email"=>"nikita@example.org", "body"=>nil}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ipsa-aut-8 Completed 302 Found in 7ms (ActiveRecord: 0.2ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'pierce@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "pierce@example.com"], ["encrypted_password", "$2a$04$7lngWHB/76Ha1A4nmH6xgewpGtNxtNvPR6tXz3WLwoqFoCQBp8csK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 18], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["description", "Consequuntur dignissimos fugit nulla vel. Voluptatem optio eius velit molestias rerum tenetur. Ut vitae fugiat ut ipsa in et."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolores sed quae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dignissimos-qui-9' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 17], ["blog_id", 1], ["body", "Ea eum nulla saepe dolor et blanditiis neque. Dicta eos est sed ut. Voluptates exercitationem voluptate qui autem quos vel pariatur. Soluta voluptatem corporis sit rerum aut dolores. Aut aliquid inventore velit eum. Alias deserunt sit. Deleniti et dolor eius ut quaerat distinctio."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["excerpt", "Et et."], ["published", true], ["slug", "dignissimos-qui-9"], ["title", "Molestias sed et distinctio aliquid commodi."], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test9' OR lower(name) = 'rspec9' OR lower(name) = 'ruby9' OR lower(name) = '#rails9') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test9"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec9"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby9"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails9"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Unique Heathcote", "author_email"=>"josie@example.com", "body"=>"Distinctio qui molestiae."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "josie@example.com"], ["author_name", "Unique Heathcote"], ["body", "Distinctio qui molestiae."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/dignissimos-qui-9 Completed 302 Found in 7ms (ActiveRecord: 0.4ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ward.donnelly@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ward.donnelly@example.net"], ["encrypted_password", "$2a$04$5CvUEjOcQEYg/BlY04gZbuCdOOqpM0bBgL0PR7tQ9GlUs1V6emOje"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 20], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["description", "Est voluptates ipsam quas suscipit. Illum quo dolorem est sit et nihil voluptas. Maiores et sunt hic quo placeat quasi pariatur. Voluptatem ab sunt expedita aut nihil."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolor vel dolor non expedita perferendis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ipsa-aut-10' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 19], ["blog_id", 1], ["body", "A omnis aut. Facere est blanditiis dignissimos incidunt est porro minima. Amet aut quis exercitationem omnis maxime non. Nostrum blanditiis porro magnam incidunt doloremque quibusdam voluptatem. Labore ratione est. Sequi tempore illo ducimus temporibus hic."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["excerpt", "Tempore."], ["published", true], ["slug", "ipsa-aut-10"], ["title", "Sint ab et accusamus sed dolorum aliquid ad."], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test10' OR lower(name) = 'rspec10' OR lower(name) = 'ruby10' OR lower(name) = '#rails10') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test10"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec10"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby10"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails10' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails10"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "nikita@example.org"], ["author_name", "Stephan Adams II"], ["body", "Ullam et dolor deserunt soluta tempora rerum ipsam. Ducimus consequatur consequatur totam."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_comments" Processing by Almanac::CommentsController#destroy as HTML Parameters: {"id"=>"1", "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "almanac_comments" WHERE "almanac_comments"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/1 Completed 302 Found in 7ms (ActiveRecord: 0.4ms)  (0.0ms) SELECT COUNT(*) FROM "almanac_comments"  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jaunita@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jaunita@example.net"], ["encrypted_password", "$2a$04$DPUfXgCRKm4iC5HfDZsJje.w3edug85ZJifzIsP2qd4dew1SL0bh6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 22], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["description", "Consequuntur dignissimos fugit nulla vel. Voluptatem optio eius velit molestias rerum tenetur. Ut vitae fugiat ut ipsa in et."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolores sed quae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ut-quia-11' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 21], ["blog_id", 1], ["body", "Voluptates exercitationem voluptate qui autem quos vel pariatur. Soluta voluptatem corporis sit rerum aut dolores. Aut aliquid inventore velit eum. Alias deserunt sit. Deleniti et dolor eius ut quaerat distinctio."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["excerpt", "Debitis."], ["published", true], ["slug", "ut-quia-11"], ["title", "Autem nemo maxime."], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test11' OR lower(name) = 'rspec11' OR lower(name) = 'ruby11' OR lower(name) = '#rails11') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test11"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec11"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby11"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails11"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "josie@example.com"], ["author_name", "Unique Heathcote"], ["body", "Distinctio qui molestiae."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#destroy as HTML Parameters: {"id"=>"1", "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) DELETE FROM "almanac_comments" WHERE "almanac_comments"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/1 Completed 302 Found in 7ms (ActiveRecord: 0.3ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 24], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["description", "Sapiente facere magni quis odio et. Officiis dolor vel doloremque id rem sint sit. Aliquam velit quia iste ea sunt. Harum error iure non."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quod quos ut eveniet ad ut veniam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'odit-voluptas-12' LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 25], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["description", "Aut consequatur harum dolorem dolorum et libero aut. Cupiditate voluptates vitae fuga nihil quia eos. Quasi et itaque rem id dolores."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Placeat rerum nulla maxime nihil."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'itaque-impedit-13' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 26], ["blog_id", 1], ["body", "Ducimus architecto quis. Praesentium voluptas nobis rerum quam. A cum consequuntur dolorem voluptatibus iure rerum enim. Minus illum eligendi. Nihil voluptatum non ut cum laudantium tempora ab. A suscipit mollitia autem. Officiis veritatis repellendus."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["excerpt", "Exercitationem laudantium non est quia."], ["published", true], ["slug", "itaque-impedit-13"], ["title", "Iste aut qui est delectus et ipsam."], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test13' OR lower(name) = 'rspec13' OR lower(name) = 'ruby13' OR lower(name) = '#rails13') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails13"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptate-quaerat-14' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 27], ["blog_id", 1], ["body", "Iusto qui suscipit. Quasi vel nisi eius aut. Laudantium qui id et enim ab architecto. Nam dignissimos aperiam error officiis sit odit. Impedit recusandae ratione. Sunt sapiente nihil et voluptas ex."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["excerpt", "Vero facere."], ["published", true], ["slug", "voluptate-quaerat-14"], ["title", "Assumenda perferendis debitis dolores accusamus quis rem."], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test14' OR lower(name) = 'rspec14' OR lower(name) = 'ruby14' OR lower(name) = '#rails14') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test14' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test14"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec14"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby14"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails14"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 29], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["description", "Culpa doloremque sit vel non dolores nulla. Perferendis est quo vitae qui. Accusamus facilis dolor suscipit totam. Vitae alias cupiditate est quo consequuntur."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quos doloribus maxime quaerat nulla voluptatem est."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'non-laboriosam-15' LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 31], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["description", "Ipsa odio dicta qui asperiores sed. Rerum voluptatum deleniti. Officia et quos est quidem laborum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et nobis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ex-eaque-16' LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 33], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["description", "Voluptatem velit unde distinctio nostrum rerum voluptas temporibus. Aspernatur ut enim dicta et harum aut. Vitae assumenda ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aliquid debitis esse aut."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eum-sit-17' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 32], ["blog_id", 1], ["body", "Tempora distinctio enim vitae vero tenetur et voluptate. Mollitia necessitatibus reiciendis dolorem ut suscipit molestias. Labore molestias mollitia exercitationem vitae a dicta. Et dignissimos eaque. Est blanditiis ea quas necessitatibus. Id quasi accusantium quia architecto nulla reprehenderit quaerat. Esse maiores repellat expedita itaque inventore."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["excerpt", "Maiores."], ["published", true], ["slug", "eum-sit-17"], ["title", "Aut qui nemo nostrum a dolores voluptatibus veniam."], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test17' OR lower(name) = 'rspec17' OR lower(name) = 'ruby17' OR lower(name) = '#rails17') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test17"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec17"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby17"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails17"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sit-corrupti-18' LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ut-officia-19' LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 37], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["description", "Aliquid rerum maiores qui odio voluptatem et. Facilis fugit non officiis eius eligendi iste. Quam sunt consectetur voluptas. Ipsa quos quidem nihil dignissimos. Libero saepe est sed."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Excepturi repellat repellendus nulla sint esse."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 39], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["description", "Explicabo odio ut assumenda et ullam. Et dicta excepturi tempora quis voluptatem libero distinctio. Numquam repellat voluptas tempora quia cumque impedit est. Mollitia et sunt."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Qui non."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.3ms) rollback transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 41], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["description", "Quia ea omnis. Deserunt aperiam qui enim expedita dolores eum magni. Quia beatae et illum. Possimus tempore a quas vel alias."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Beatae est distinctio qui."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'laborum-eligendi-20' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 43], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["description", "Nobis magni in aliquam et vel. Quas et earum. Dolorem totam omnis placeat eaque nobis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Impedit veritatis ut."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-repudiandae-21' LIMIT 1  (0.3ms) rollback transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 45], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["description", "Consequuntur incidunt sint. Officia corrupti consequatur. Aspernatur qui ut harum molestiae. Expedita sed molestias."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Temporibus veniam saepe voluptatum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'laborum-est-22' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 46], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["description", "Eius quo unde optio asperiores. Sit laboriosam sit consequatur qui reiciendis autem. Et neque odit molestiae et rerum tempore voluptates."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quia earum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ipsa-alias-23' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 47], ["blog_id", 1], ["body", "Porro fugiat consequatur ut vel excepturi sed. Et commodi enim consequuntur aut. Quo in voluptas quia. Hic quis aut illo. Laudantium perferendis repudiandae libero nisi molestiae consequatur ut. Quas doloribus ut laudantium itaque quia illum."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["excerpt", "Alias."], ["published", true], ["slug", "ipsa-alias-23"], ["title", "Consequuntur ut qui assumenda tenetur."], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test25' OR lower(name) = 'rspec25' OR lower(name) = 'ruby25' OR lower(name) = '#rails25') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test25"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec25"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby25"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails25"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sapiente-minima-24' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 48], ["blog_id", 1], ["body", "Natus eum modi harum at. Enim nulla sit quisquam molestias est. Quia eos cum nihil assumenda veritatis. Omnis ipsa ad voluptas error odio culpa tenetur. Amet accusantium eos fuga nesciunt. Commodi dolor officia consectetur et est eum."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["excerpt", "Qui accusamus totam voluptates voluptas."], ["published", true], ["slug", "sapiente-minima-24"], ["title", "Sed sit quod eaque a."], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test26' OR lower(name) = 'rspec26' OR lower(name) = 'ruby26' OR lower(name) = '#rails26') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test26' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails26"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'incidunt-mollitia-25' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 49], ["blog_id", 1], ["body", "Illo quas voluptatem officia vel reiciendis incidunt distinctio. Et corrupti animi sed omnis labore iure. Corporis omnis iste ducimus. At aliquid magnam. Velit qui blanditiis corporis dolor expedita. Qui est repellendus error natus. Facilis voluptates qui culpa veritatis nostrum vel."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["excerpt", "Blanditiis reiciendis."], ["published", true], ["slug", "incidunt-mollitia-25"], ["title", "Et dolores repellendus sunt et."], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test27' OR lower(name) = 'rspec27' OR lower(name) = 'ruby27' OR lower(name) = '#rails27') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails27"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'est-id-26' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 50], ["blog_id", 1], ["body", "Maxime exercitationem mollitia recusandae id. Praesentium est molestias distinctio qui ullam. Aut quam beatae tempora ipsum. Numquam ut dolorem. Quia corrupti voluptates sunt maiores animi. Ut saepe veniam."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["excerpt", "Qui neque eos iste."], ["published", true], ["slug", "est-id-26"], ["title", "Amet aperiam quibusdam molestias officiis perspiciatis ipsam dignissimos."], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test28' OR lower(name) = 'rspec28' OR lower(name) = 'ruby28' OR lower(name) = '#rails28') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test28"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec28"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby28"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails28"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-porro-27' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 51], ["blog_id", 1], ["body", "Enim sed pariatur soluta ea necessitatibus in. Numquam minus laboriosam dignissimos fuga. Est temporibus nulla illo. Molestiae illo nihil. Quisquam esse vel. Dolor consequatur nihil quidem nemo facere."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["excerpt", "Alias numquam."], ["published", true], ["slug", "aut-porro-27"], ["title", "Est laboriosam in blanditiis sunt nesciunt."], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test29' OR lower(name) = 'rspec29' OR lower(name) = 'ruby29' OR lower(name) = '#rails29') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test29"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby29"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails29"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'minus-officiis-28' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 52], ["blog_id", 1], ["body", "Voluptatem est beatae fuga ut est. Ipsum voluptas voluptatem eius est dolor. Consequatur quo deleniti sunt nihil. Culpa sunt eligendi aut. Quis dolorum reprehenderit molestiae incidunt ut officia numquam. Ad sit dicta."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["excerpt", "Sint."], ["published", true], ["slug", "minus-officiis-28"], ["title", "Eligendi rerum voluptates."], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test30' OR lower(name) = 'rspec30' OR lower(name) = 'ruby30' OR lower(name) = '#rails30') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails30"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'reprehenderit-optio-29' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 53], ["blog_id", 1], ["body", "Rerum reprehenderit dolores odit temporibus qui similique molestiae. Sint temporibus fugit facere quia nihil at. Ut dolorum qui nesciunt dolores quasi eligendi odio. Omnis blanditiis harum occaecati qui mollitia reprehenderit. Qui omnis qui voluptatem sit asperiores minus. Libero et quia labore."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["excerpt", "Ut et inventore molestiae dolorem sit."], ["published", true], ["slug", "reprehenderit-optio-29"], ["title", "Itaque rem numquam et."], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test31' OR lower(name) = 'rspec31' OR lower(name) = 'ruby31' OR lower(name) = '#rails31') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails31"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptas-qui-30' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 54], ["blog_id", 1], ["body", "Facere expedita aut ea consectetur neque incidunt. Rerum iure ratione at reprehenderit aut. Et magni et itaque unde ipsa facere. Eligendi et qui sed voluptates rerum. Molestiae at cumque."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["excerpt", "Placeat."], ["published", true], ["slug", "voluptas-qui-30"], ["title", "Et ipsa iste."], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test32' OR lower(name) = 'rspec32' OR lower(name) = 'ruby32' OR lower(name) = '#rails32') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails32"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quidem-asperiores-31' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 55], ["blog_id", 1], ["body", "Praesentium at repellat dicta deserunt quis qui pariatur. Dicta debitis temporibus nihil modi deleniti occaecati molestiae. Quibusdam eius quidem dolor veniam perferendis deleniti nisi. Itaque doloribus fugit sint. Saepe voluptas repellat ut deserunt laborum blanditiis nihil. Qui sed aut esse."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["excerpt", "Sapiente provident."], ["published", true], ["slug", "quidem-asperiores-31"], ["title", "Et molestiae suscipit deserunt qui modi."], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test33' OR lower(name) = 'rspec33' OR lower(name) = 'ruby33' OR lower(name) = '#rails33') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test33"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec33"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby33"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails33"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'iste-enim-32' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 56], ["blog_id", 1], ["body", "Tempore architecto at atque corrupti iste non. Laboriosam aspernatur maxime. Eos id aut blanditiis sed qui repellendus occaecati. Repudiandae praesentium facilis. Dolorum qui nihil magni quas facere quasi in. Adipisci qui modi laudantium qui repudiandae quis. Est necessitatibus sapiente corrupti sed."], ["created_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["excerpt", "Et neque recusandae laboriosam nam consequuntur."], ["published", true], ["slug", "iste-enim-32"], ["title", "Commodi omnis quaerat recusandae et qui illum quam."], ["updated_at", Fri, 28 Dec 2012 04:41:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test34' OR lower(name) = 'rspec34' OR lower(name) = 'ruby34' OR lower(name) = '#rails34') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails34"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'neque-quaerat-33' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 57], ["blog_id", 1], ["body", "Officia asperiores quam inventore a. Fugiat sapiente harum. Voluptatem aut est voluptatibus voluptas. Quidem qui molestiae sunt est dolorem. Soluta est ut omnis totam enim similique impedit. A aliquid ut ea dignissimos earum. Est iusto dicta ut ea voluptatem aut minima."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Consectetur qui quo."], ["published", true], ["slug", "neque-quaerat-33"], ["title", "Aut rem et."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'necessitatibus-dolores-34' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 58], ["blog_id", 1], ["body", "Officia vel delectus. Et quia quo. Omnis quis iure. Sed tempora quasi laboriosam ab adipisci dicta et. Pariatur qui unde cumque impedit ad harum eum. Qui non enim."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Totam explicabo."], ["published", true], ["slug", "necessitatibus-dolores-34"], ["title", "Vitae earum aperiam."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_32a0574 ON posts_taggings_32a0574.taggable_id = almanac_posts.id AND posts_taggings_32a0574.taggable_type = 'Almanac::Post' AND posts_taggings_32a0574.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 59], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["description", "Quibusdam optio exercitationem numquam incidunt. Eaque quia laborum perferendis quis. Molestiae ut id omnis earum inventore quo. Officia ratione exercitationem provident sit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Explicabo odio ut assumenda et."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quo-architecto-35' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 60], ["blog_id", 1], ["body", "Sit et enim vitae. Quisquam ipsa et deserunt modi. Harum amet voluptas. Animi nam magnam ut nihil est error. Sed repellat assumenda eveniet asperiores. Provident sunt enim est."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Doloribus laborum qui neque saepe dolor."], ["published", true], ["slug", "quo-architecto-35"], ["title", "Nam itaque dolor maxime repellendus accusantium nemo."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test35' OR lower(name) = 'rspec35' OR lower(name) = 'ruby35' OR lower(name) = '#rails35') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails35"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'commodi-quia-36' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 61], ["blog_id", 1], ["body", "Iusto quia minus suscipit. Eos placeat aut sed officia. Quisquam voluptate explicabo veritatis molestiae autem facere. Delectus consequuntur laboriosam eum consequatur totam corrupti et. Repellendus dolorem corrupti fuga. Omnis blanditiis sit."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Voluptas quas reprehenderit architecto voluptate illo."], ["published", true], ["slug", "commodi-quia-36"], ["title", "Est amet non vero quos eius."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test36' OR lower(name) = 'rspec36' OR lower(name) = 'ruby36' OR lower(name) = '#rails36') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test36' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test36"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec36"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby36"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails36"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'suscipit-nostrum-37' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 62], ["blog_id", 1], ["body", "Ducimus adipisci omnis. Cupiditate ad natus. Amet dicta ut sunt non. Dolor veritatis non accusantium quis quod. Vero aliquam et qui molestias nihil harum."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Ea amet nobis pariatur."], ["published", true], ["slug", "suscipit-nostrum-37"], ["title", "Voluptas similique repellendus vel rerum quia."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test37' OR lower(name) = 'rspec37' OR lower(name) = 'ruby37' OR lower(name) = '#rails37') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test37"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec37"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby37"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails37' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails37"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'natus-minus-38' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 63], ["blog_id", 1], ["body", "Minus harum voluptatem enim est ipsam est quasi. Non eligendi ab. Illum ut quaerat rerum porro nesciunt quam. Laudantium facere perspiciatis autem tempora consectetur. Totam iure sunt at."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "In nulla corporis inventore."], ["published", true], ["slug", "natus-minus-38"], ["title", "In voluptatem aut rerum vel sit nihil quos."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test38' OR lower(name) = 'rspec38' OR lower(name) = 'ruby38' OR lower(name) = '#rails38') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails38"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sunt-nam-39' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 64], ["blog_id", 1], ["body", "Quisquam voluptatem expedita in voluptatem qui architecto enim. Corrupti omnis in qui facilis. Ratione nesciunt porro. Harum et praesentium autem adipisci quae odio dolores. Ab quibusdam et vel libero culpa. Maxime itaque nobis voluptatem non quas qui est."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Quia voluptatem quo et veritatis."], ["published", true], ["slug", "sunt-nam-39"], ["title", "Voluptas ea illo quia iste repudiandae doloremque accusantium."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test39' OR lower(name) = 'rspec39' OR lower(name) = 'ruby39' OR lower(name) = '#rails39') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test39"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec39"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby39"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails39"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'modi-veniam-40' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 65], ["blog_id", 1], ["body", "Nam dolorem maiores quo. Sapiente temporibus et earum voluptas omnis quos quis. Voluptate ut consequatur exercitationem et minus amet sequi. Reprehenderit eum tempore sed autem eos. Quo fuga id sint cupiditate et praesentium et. Perferendis dolores delectus labore. Quia ut incidunt."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Dolor."], ["published", true], ["slug", "modi-veniam-40"], ["title", "Delectus expedita ut quia qui et fugiat ullam."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test40' OR lower(name) = 'rspec40' OR lower(name) = 'ruby40' OR lower(name) = '#rails40') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test40"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec40"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby40"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails40"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quia-accusamus-41' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 66], ["blog_id", 1], ["body", "Aperiam dolores aut dolor. Asperiores tempore ipsa laudantium quae qui. Incidunt iste rerum adipisci quo quisquam blanditiis. Sit quos rerum. Autem repellendus magni aut blanditiis. Praesentium esse magnam neque sed. Voluptatibus quis dolorem delectus fuga."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Magnam rerum atque quo occaecati quis."], ["published", true], ["slug", "quia-accusamus-41"], ["title", "Non vel vel iure."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test41' OR lower(name) = 'rspec41' OR lower(name) = 'ruby41' OR lower(name) = '#rails41') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test41"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec41"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby41"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails41"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ipsa-quas-42' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 67], ["blog_id", 1], ["body", "Dignissimos perspiciatis assumenda error molestiae rerum. Et consequatur illo atque. Distinctio dolorem doloribus recusandae natus harum temporibus et. Tenetur et et animi. Sunt est sit ad id. Officia id molestiae dolore occaecati nesciunt quam laborum."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Quidem omnis quisquam architecto voluptate."], ["published", true], ["slug", "ipsa-quas-42"], ["title", "Qui possimus esse omnis quidem qui."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test42' OR lower(name) = 'rspec42' OR lower(name) = 'ruby42' OR lower(name) = '#rails42') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails42"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'mollitia-hic-43' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 68], ["blog_id", 1], ["body", "Suscipit quaerat ratione id et. Nesciunt consequatur in debitis dolores et. Aut modi praesentium dicta et rerum et. Ex doloribus aperiam assumenda maxime. Reprehenderit asperiores sequi et aut ab. Occaecati est dolores optio nulla harum."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Tempore officia commodi suscipit."], ["published", true], ["slug", "mollitia-hic-43"], ["title", "Quisquam dolorem sunt velit corporis cupiditate commodi."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test43' OR lower(name) = 'rspec43' OR lower(name) = 'ruby43' OR lower(name) = '#rails43') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test43"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec43"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby43"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails43"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'iure-enim-44' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 69], ["blog_id", 1], ["body", "Tenetur sed expedita beatae maxime. Similique laudantium aut. Ducimus eos reiciendis facere. Quis neque libero consequatur. Reprehenderit quis unde. Tenetur quia perspiciatis alias rerum dolorem. Quasi aut assumenda in ipsum nam voluptatum sed."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Molestias provident officiis in."], ["published", true], ["slug", "iure-enim-44"], ["title", "At hic sit voluptas tempora."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test44' OR lower(name) = 'rspec44' OR lower(name) = 'ruby44' OR lower(name) = '#rails44') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test44"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec44"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby44"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails44"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolorem-in-45' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 70], ["blog_id", 1], ["body", "Et qui numquam quia suscipit esse doloremque alias. Omnis quia aut asperiores quo et minus. Voluptas veritatis iusto autem rem est minima. Aliquid aut perferendis harum. Totam laboriosam et temporibus molestias itaque. Est consequatur expedita eius optio accusamus."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Est qui labore et minus alias."], ["published", false], ["slug", "dolorem-in-45"], ["title", "Et corrupti beatae sunt."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test45' OR lower(name) = 'rspec45' OR lower(name) = 'ruby45' OR lower(name) = '#rails45') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test45"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec45"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby45"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails45"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 42 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 42], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 43 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 43], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 44 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 44], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 45 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 45], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nam-aut-46' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 71], ["blog_id", 1], ["body", "Doloremque error cupiditate tempore ducimus et unde quam. Atque quaerat doloremque. Enim eum molestiae officia hic consequatur. Totam ut tempore. Et qui sit natus voluptas ut optio. Tenetur vitae et cumque adipisci reprehenderit quas."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Qui ut explicabo recusandae."], ["published", false], ["slug", "nam-aut-46"], ["title", "Et et et."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test46' OR lower(name) = 'rspec46' OR lower(name) = 'ruby46' OR lower(name) = '#rails46') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails46"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 46 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 46], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 47 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 47], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 48 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 48], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 49 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 49], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_f2b621f ON posts_taggings_f2b621f.taggable_id = almanac_posts.id AND posts_taggings_f2b621f.taggable_type = 'Almanac::Post' AND posts_taggings_f2b621f.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 72], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["description", "Eius quo unde optio asperiores. Sit laboriosam sit consequatur qui reiciendis autem. Et neque odit molestiae et rerum tempore voluptates."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ad et qui fugiat vitae aut."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ipsa-alias-47' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 73], ["blog_id", 1], ["body", "Porro fugiat consequatur ut vel excepturi sed. Et commodi enim consequuntur aut. Quo in voluptas quia. Hic quis aut illo. Laudantium perferendis repudiandae libero nisi molestiae consequatur ut. Quas doloribus ut laudantium itaque quia illum."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Alias."], ["published", true], ["slug", "ipsa-alias-47"], ["title", "Consequuntur ut qui assumenda tenetur."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test47' OR lower(name) = 'rspec47' OR lower(name) = 'ruby47' OR lower(name) = '#rails47') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby47"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails47"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sapiente-minima-48' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 74], ["blog_id", 1], ["body", "Natus eum modi harum at. Enim nulla sit quisquam molestias est. Quia eos cum nihil assumenda veritatis. Omnis ipsa ad voluptas error odio culpa tenetur. Amet accusantium eos fuga nesciunt. Commodi dolor officia consectetur et est eum."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Qui accusamus totam voluptates voluptas."], ["published", true], ["slug", "sapiente-minima-48"], ["title", "Sed sit quod eaque a."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test48' OR lower(name) = 'rspec48' OR lower(name) = 'ruby48' OR lower(name) = '#rails48') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test48' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails48"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'incidunt-mollitia-49' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 75], ["blog_id", 1], ["body", "Illo quas voluptatem officia vel reiciendis incidunt distinctio. Et corrupti animi sed omnis labore iure. Corporis omnis iste ducimus. At aliquid magnam. Velit qui blanditiis corporis dolor expedita. Qui est repellendus error natus. Facilis voluptates qui culpa veritatis nostrum vel."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Blanditiis reiciendis."], ["published", true], ["slug", "incidunt-mollitia-49"], ["title", "Et dolores repellendus sunt et."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test49' OR lower(name) = 'rspec49' OR lower(name) = 'ruby49' OR lower(name) = '#rails49') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test49"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails49"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.2ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'est-id-50' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 76], ["blog_id", 1], ["body", "Maxime exercitationem mollitia recusandae id. Praesentium est molestias distinctio qui ullam. Aut quam beatae tempora ipsum. Numquam ut dolorem. Quia corrupti voluptates sunt maiores animi. Ut saepe veniam."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Qui neque eos iste."], ["published", false], ["slug", "est-id-50"], ["title", "Amet aperiam quibusdam molestias officiis perspiciatis ipsam dignissimos."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test50' OR lower(name) = 'rspec50' OR lower(name) = 'ruby50' OR lower(name) = '#rails50') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails50"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-porro-51' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 77], ["blog_id", 1], ["body", "Enim sed pariatur soluta ea necessitatibus in. Numquam minus laboriosam dignissimos fuga. Est temporibus nulla illo. Molestiae illo nihil. Quisquam esse vel. Dolor consequatur nihil quidem nemo facere."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Alias numquam."], ["published", false], ["slug", "aut-porro-51"], ["title", "Est laboriosam in blanditiis sunt nesciunt."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test51' OR lower(name) = 'rspec51' OR lower(name) = 'ruby51' OR lower(name) = '#rails51') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails51"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'minus-officiis-52' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 78], ["blog_id", 1], ["body", "Voluptatem est beatae fuga ut est. Ipsum voluptas voluptatem eius est dolor. Consequatur quo deleniti sunt nihil. Culpa sunt eligendi aut. Quis dolorum reprehenderit molestiae incidunt ut officia numquam. Ad sit dicta."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Sint."], ["published", false], ["slug", "minus-officiis-52"], ["title", "Eligendi rerum voluptates."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test52' OR lower(name) = 'rspec52' OR lower(name) = 'ruby52' OR lower(name) = '#rails52') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails52"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f'  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 79], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["description", "Eius quo unde optio asperiores. Sit laboriosam sit consequatur qui reiciendis autem. Et neque odit molestiae et rerum tempore voluptates."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quia earum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ipsa-alias-53' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 80], ["blog_id", 1], ["body", "Porro fugiat consequatur ut vel excepturi sed. Et commodi enim consequuntur aut. Quo in voluptas quia. Hic quis aut illo. Laudantium perferendis repudiandae libero nisi molestiae consequatur ut. Quas doloribus ut laudantium itaque quia illum."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Alias."], ["published", true], ["slug", "ipsa-alias-53"], ["title", "Consequuntur ut qui assumenda tenetur."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test53' OR lower(name) = 'rspec53' OR lower(name) = 'ruby53' OR lower(name) = '#rails53') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails53"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sapiente-minima-54' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 81], ["blog_id", 1], ["body", "Natus eum modi harum at. Enim nulla sit quisquam molestias est. Quia eos cum nihil assumenda veritatis. Omnis ipsa ad voluptas error odio culpa tenetur. Amet accusantium eos fuga nesciunt. Commodi dolor officia consectetur et est eum."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Qui accusamus totam voluptates voluptas."], ["published", true], ["slug", "sapiente-minima-54"], ["title", "Sed sit quod eaque a."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test54' OR lower(name) = 'rspec54' OR lower(name) = 'ruby54' OR lower(name) = '#rails54') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test54' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec54"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby54"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails54"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'incidunt-mollitia-55' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 82], ["blog_id", 1], ["body", "Illo quas voluptatem officia vel reiciendis incidunt distinctio. Et corrupti animi sed omnis labore iure. Corporis omnis iste ducimus. At aliquid magnam. Velit qui blanditiis corporis dolor expedita. Qui est repellendus error natus. Facilis voluptates qui culpa veritatis nostrum vel."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Blanditiis reiciendis."], ["published", true], ["slug", "incidunt-mollitia-55"], ["title", "Et dolores repellendus sunt et."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test55' OR lower(name) = 'rspec55' OR lower(name) = 'ruby55' OR lower(name) = '#rails55') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec55"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails55"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'est-id-56' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 83], ["blog_id", 1], ["body", "Maxime exercitationem mollitia recusandae id. Praesentium est molestias distinctio qui ullam. Aut quam beatae tempora ipsum. Numquam ut dolorem. Quia corrupti voluptates sunt maiores animi. Ut saepe veniam."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Qui neque eos iste."], ["published", true], ["slug", "est-id-56"], ["title", "Amet aperiam quibusdam molestias officiis perspiciatis ipsam dignissimos."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test56' OR lower(name) = 'rspec56' OR lower(name) = 'ruby56' OR lower(name) = '#rails56') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails56"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-porro-57' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 84], ["blog_id", 1], ["body", "Enim sed pariatur soluta ea necessitatibus in. Numquam minus laboriosam dignissimos fuga. Est temporibus nulla illo. Molestiae illo nihil. Quisquam esse vel. Dolor consequatur nihil quidem nemo facere."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Alias numquam."], ["published", false], ["slug", "aut-porro-57"], ["title", "Est laboriosam in blanditiis sunt nesciunt."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test57' OR lower(name) = 'rspec57' OR lower(name) = 'ruby57' OR lower(name) = '#rails57') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails57"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'minus-officiis-58' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 85], ["blog_id", 1], ["body", "Voluptatem est beatae fuga ut est. Ipsum voluptas voluptatem eius est dolor. Consequatur quo deleniti sunt nihil. Culpa sunt eligendi aut. Quis dolorum reprehenderit molestiae incidunt ut officia numquam. Ad sit dicta."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Sint."], ["published", false], ["slug", "minus-officiis-58"], ["title", "Eligendi rerum voluptates."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test58' OR lower(name) = 'rspec58' OR lower(name) = 'ruby58' OR lower(name) = '#rails58') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails58"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'reprehenderit-optio-59' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 86], ["blog_id", 1], ["body", "Rerum reprehenderit dolores odit temporibus qui similique molestiae. Sint temporibus fugit facere quia nihil at. Ut dolorum qui nesciunt dolores quasi eligendi odio. Omnis blanditiis harum occaecati qui mollitia reprehenderit. Qui omnis qui voluptatem sit asperiores minus. Libero et quia labore."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Ut et inventore molestiae dolorem sit."], ["published", false], ["slug", "reprehenderit-optio-59"], ["title", "Itaque rem numquam et."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test59' OR lower(name) = 'rspec59' OR lower(name) = 'ruby59' OR lower(name) = '#rails59') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails59"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 't'  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 87], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["description", "Sunt necessitatibus aut natus ut. Ut ex quidem vel dignissimos. Et neque odit molestiae et rerum tempore voluptates. Consequuntur ut qui assumenda tenetur. Alias quia necessitatibus voluptatem et ipsa nulla qui."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et sequi rerum consequatur tenetur."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 90], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["description", "Minima perspiciatis similique. Ea architecto quia. Iste non perspiciatis voluptate magni iure est unde. Dignissimos sed iste perspiciatis sunt. Reprehenderit omnis repellendus ut nemo qui aperiam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Qui non at autem iste ut eveniet."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ward.donnelly@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ward.donnelly@example.net"], ["encrypted_password", "$2a$04$2IyY2G3IdPOud/xgj5lMsePBjH02ESMr93fZc9h6jQ.M/meKfe/.C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 91], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["description", "Qui ipsa fuga veniam consequuntur reprehenderit nihil voluptates. Qui non iusto quidem asperiores vel. Ut beatae quasi. Officiis iusto quia voluptatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sint ab et accusamus sed dolorum aliquid."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptas-et-60' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 92], ["blog_id", 1], ["body", "Atque aut eius. Rerum accusantium reprehenderit nam et sed saepe. Voluptatem ab aperiam fuga et officia reprehenderit eos. Est nemo vel nesciunt dolorem est. Voluptates corrupti rerum libero sunt. Sapiente repellat repellendus dolor necessitatibus reiciendis alias culpa."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Beatae."], ["published", true], ["slug", "voluptas-et-60"], ["title", "Ab sint maiores quis a sed quod accusantium."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test60' OR lower(name) = 'rspec60' OR lower(name) = 'ruby60' OR lower(name) = '#rails60') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails60"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_posts" Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."post_id" = 1 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 32ms (ActiveRecord: 1.2ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'nat.kozey@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "nat.kozey@example.com"], ["encrypted_password", "$2a$04$bfBRaMfJvh9UM7YUM18Ug.pdAEQ8rkQfyzkN0d.elvcixVKTITsL."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 93], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["description", "Est reprehenderit quibusdam fuga consequatur quam. Id et autem qui nobis nisi. Consequuntur sit saepe quia quod. Ipsam deleniti aperiam consequuntur libero autem. Est libero natus magni ratione illum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ut ullam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'officiis-sed-61' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 94], ["blog_id", 1], ["body", "Sapiente est omnis. Necessitatibus explicabo voluptas sit recusandae quia fugit. Omnis eligendi repellendus est ut. Distinctio vero et eius maxime amet. Ea molestias sed. Quo autem iusto maxime mollitia."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Nesciunt voluptas debitis saepe quis."], ["published", true], ["slug", "officiis-sed-61"], ["title", "Dolorum nemo molestiae sequi iusto voluptatum."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test61' OR lower(name) = 'rspec61' OR lower(name) = 'ruby61' OR lower(name) = '#rails61') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test61"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby61"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails61"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."post_id" = 1 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 11ms (ActiveRecord: 0.9ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ward.donnelly@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ward.donnelly@example.net"], ["encrypted_password", "$2a$04$bqmWtTXK9aRIa9tlpg/xceJDckTn3UcaRxV3lb.XcAKwuBT2FEgNG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 95], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["description", "Qui ipsa fuga veniam consequuntur reprehenderit nihil voluptates. Qui non iusto quidem asperiores vel. Ut beatae quasi. Officiis iusto quia voluptatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sint ab et accusamus sed dolorum aliquid."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptas-et-62' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 96], ["blog_id", 1], ["body", "Atque aut eius. Rerum accusantium reprehenderit nam et sed saepe. Voluptatem ab aperiam fuga et officia reprehenderit eos. Est nemo vel nesciunt dolorem est. Voluptates corrupti rerum libero sunt. Sapiente repellat repellendus dolor necessitatibus reiciendis alias culpa."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Beatae."], ["published", true], ["slug", "voluptas-et-62"], ["title", "Ab sint maiores quis a sed quod accusantium."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test62' OR lower(name) = 'rspec62' OR lower(name) = 'ruby62' OR lower(name) = '#rails62') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails62"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'laborum-voluptatem-63' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 97], ["blog_id", 1], ["body", "Ea quaerat fugit sit. Modi dicta cum. Voluptatem doloremque dignissimos culpa voluptatem id doloribus eius. Sapiente dolorem in quis architecto. Tempora cumque officia tenetur modi asperiores non non. Earum cumque pariatur ut. Vel pariatur nihil maxime explicabo."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Labore."], ["published", true], ["slug", "laborum-voluptatem-63"], ["title", "Perferendis autem voluptatibus eveniet nobis autem sed."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test63' OR lower(name) = 'rspec63' OR lower(name) = 'ruby63' OR lower(name) = '#rails63') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test63' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test63"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby63"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails63"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-est-64' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 98], ["blog_id", 1], ["body", "A sed accusamus ut ex. In esse vel. Ad iste distinctio magnam dolorum. Et consequuntur provident velit sit reiciendis magnam est. Quidem velit nihil nisi amet corrupti. Veniam non soluta ad quasi ut. Id exercitationem pariatur maxime laboriosam sint."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Consectetur culpa commodi dolores amet."], ["published", true], ["slug", "qui-est-64"], ["title", "Nisi animi sit pariatur."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test64' OR lower(name) = 'rspec64' OR lower(name) = 'ruby64' OR lower(name) = '#rails64') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails64"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'cupiditate-sed-65' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 99], ["blog_id", 1], ["body", "Voluptas aut nihil debitis. Autem vitae modi. Porro dolores ea expedita veritatis explicabo. Doloribus at velit voluptates similique quidem. Ipsa quia sapiente impedit pariatur dolorum dolores."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Qui qui vitae."], ["published", true], ["slug", "cupiditate-sed-65"], ["title", "Porro rem quod repellendus reiciendis aut fugiat."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test65' OR lower(name) = 'rspec65' OR lower(name) = 'ruby65' OR lower(name) = '#rails65') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails65"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quidem-totam-66' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 100], ["blog_id", 1], ["body", "Eum totam et aliquam dolor rerum. Et eum consequatur quis. Doloremque quis laudantium delectus incidunt dicta quaerat. Maxime dignissimos in dicta. Et praesentium cupiditate. Maiores autem laboriosam. Quo id cupiditate rem reprehenderit dolor."], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["excerpt", "Nihil dolore temporibus quia."], ["published", true], ["slug", "quidem-totam-66"], ["title", "Architecto est doloribus ratione repellendus enim et."], ["updated_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test66' OR lower(name) = 'rspec66' OR lower(name) = 'ruby66' OR lower(name) = '#rails66') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails66"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:24 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Parameters: {"tag_name"=>"common"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common') Completed 200 OK in 20ms (Views: 13.1ms | ActiveRecord: 0.2ms) Almanac::Post Load (0.3ms) SELECT "almanac_posts".* FROM "almanac_posts" JOIN taggings posts_taggings_492d9d0 ON posts_taggings_492d9d0.taggable_id = almanac_posts.id AND posts_taggings_492d9d0.taggable_type = 'Almanac::Post' AND posts_taggings_492d9d0.tag_id = 1 WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ian@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ian@example.com"], ["encrypted_password", "$2a$04$y868WKgyl5.8ONyFfVU.tO4inrTCXLlrwSKqks5QbXf6mAElF6lF2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 101], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["description", "Omnis expedita eius eos. Et vel placeat iure nihil ut quia id. Aliquam nihil ipsam culpa sit. Dignissimos est in nam ad incidunt ut. Molestias ea non officiis beatae quo deserunt."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Nihil ea at quas iure temporibus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ward.donnelly@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ward.donnelly@example.net"], ["encrypted_password", "$2a$04$BMG/xIo6RNERkWdeMNlnhubdmN6aZcOWEAO.ZzuN67/oS/uzuRyOC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 102], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["description", "Qui ipsa fuga veniam consequuntur reprehenderit nihil voluptates. Qui non iusto quidem asperiores vel. Ut beatae quasi. Officiis iusto quia voluptatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sint ab et accusamus sed dolorum aliquid."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptas-et-67' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 103], ["blog_id", 1], ["body", "Atque aut eius. Rerum accusantium reprehenderit nam et sed saepe. Voluptatem ab aperiam fuga et officia reprehenderit eos. Est nemo vel nesciunt dolorem est. Voluptates corrupti rerum libero sunt. Sapiente repellat repellendus dolor necessitatibus reiciendis alias culpa."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["excerpt", "Beatae."], ["published", true], ["slug", "voluptas-et-67"], ["title", "Ab sint maiores quis a sed quod accusantium."], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test67' OR lower(name) = 'rspec67' OR lower(name) = 'ruby67' OR lower(name) = '#rails67') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec67"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails67"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Testz", "slug"=>"excepturi-maxime-68", "excerpt"=>"Inventore iste sit velit.", "body"=>"Est molestiae assumenda. Ea quaerat fugit sit. Modi dicta cum. Voluptatem doloremque dignissimos culpa voluptatem id doloribus eius. Sapiente dolorem in quis architecto.", "published"=>true, "tag_list"=>"common,test68,rspec68,ruby68,#rails68", "author_id"=>"104", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'excepturi-maxime-68' AND "almanac_posts"."id" != 1) LIMIT 1  (0.1ms) UPDATE "almanac_posts" SET "title" = 'Testz', "slug" = 'excepturi-maxime-68', "excerpt" = 'Inventore iste sit velit.', "body" = 'Est molestiae assumenda. Ea quaerat fugit sit. Modi dicta cum. Voluptatem doloremque dignissimos culpa voluptatem id doloribus eius. Sapiente dolorem in quis architecto.', "author_id" = 104, "updated_at" = '2012-12-28 04:41:25.077641' WHERE "almanac_posts"."id" = 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test68' OR lower(name) = 'rspec68' OR lower(name) = 'ruby68' OR lower(name) = '#rails68') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test68' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby68"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails68"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."tagger_type" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."context" = 'tags' AND "taggings"."tag_id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 31ms (ActiveRecord: 2.6ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'kennedi@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "kennedi@example.org"], ["encrypted_password", "$2a$04$ts.f6T2La4ZzVhy.0VBaruo18ic06poleuONXGWtVZTw4XLaemYZ6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 105], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["description", "Cum quam ex laboriosam dicta. Laboriosam consequatur cumque quasi consequatur fuga. Harum est consequuntur quibusdam vitae ullam ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Voluptas consequatur aliquid magni."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'placeat-esse-69' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 106], ["blog_id", 1], ["body", "Ea molestias sed. Quo autem iusto maxime mollitia. Magnam id vitae aut qui. Qui numquam quasi sunt nihil vitae quo. Esse ut placeat ipsa. Ut odit qui consequuntur reiciendis."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["excerpt", "Veritatis dolorem quo aut ut."], ["published", true], ["slug", "placeat-esse-69"], ["title", "Cupiditate quia perspiciatis perferendis voluptatem ipsa enim dolor."], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test69' OR lower(name) = 'rspec69' OR lower(name) = 'ruby69' OR lower(name) = '#rails69') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test69"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec69"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby69"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails69"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Accusamus quo minus provident maxime non consequatur.", "slug"=>"at-quis-70", "excerpt"=>"Magni ea.", "body"=>"Non vel labore id aspernatur. Et nostrum voluptatem facilis quae voluptas officiis illum. Nesciunt eos sunt aut facilis. Reiciendis exercitationem voluptas natus. Necessitatibus sed doloremque commodi. Nihil voluptas quam maiores unde similique aliquam labore. Id beatae perspiciatis aut animi sunt porro.", "published"=>true, "tag_list"=>"common,test70,rspec70,ruby70,#rails70", "author_id"=>"107", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'at-quis-70' AND "almanac_posts"."id" != 1) LIMIT 1  (0.1ms) UPDATE "almanac_posts" SET "title" = 'Accusamus quo minus provident maxime non consequatur.', "slug" = 'at-quis-70', "excerpt" = 'Magni ea.', "body" = 'Non vel labore id aspernatur. Et nostrum voluptatem facilis quae voluptas officiis illum. Nesciunt eos sunt aut facilis. Reiciendis exercitationem voluptas natus. Necessitatibus sed doloremque commodi. Nihil voluptas quam maiores unde similique aliquam labore. Id beatae perspiciatis aut animi sunt porro.', "author_id" = 107, "updated_at" = '2012-12-28 04:41:25.144227' WHERE "almanac_posts"."id" = 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test70' OR lower(name) = 'rspec70' OR lower(name) = 'ruby70' OR lower(name) = '#rails70') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test70' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby70"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails70"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."tagger_type" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."context" = 'tags' AND "taggings"."tag_id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Exists (0.2ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 69ms (ActiveRecord: 2.7ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ward.donnelly@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ward.donnelly@example.net"], ["encrypted_password", "$2a$04$w/timCSUrjCFtd2BuvclsuDZnY2M6vcTZOKth1fpxEM3lVVwL3Vwq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 108], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["description", "Qui ipsa fuga veniam consequuntur reprehenderit nihil voluptates. Qui non iusto quidem asperiores vel. Ut beatae quasi. Officiis iusto quia voluptatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sint ab et accusamus sed dolorum aliquid."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptas-et-71' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 109], ["blog_id", 1], ["body", "Atque aut eius. Rerum accusantium reprehenderit nam et sed saepe. Voluptatem ab aperiam fuga et officia reprehenderit eos. Est nemo vel nesciunt dolorem est. Voluptates corrupti rerum libero sunt. Sapiente repellat repellendus dolor necessitatibus reiciendis alias culpa."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["excerpt", "Beatae."], ["published", true], ["slug", "voluptas-et-71"], ["title", "Ab sint maiores quis a sed quod accusantium."], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test71' OR lower(name) = 'rspec71' OR lower(name) = 'ruby71' OR lower(name) = '#rails71') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails71"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"excepturi-maxime-72", "excerpt"=>"Inventore iste sit velit.", "body"=>"Est molestiae assumenda. Ea quaerat fugit sit. Modi dicta cum. Voluptatem doloremque dignissimos culpa voluptatem id doloribus eius. Sapiente dolorem in quis architecto.", "published"=>true, "tag_list"=>"common,test72,rspec72,ruby72,#rails72", "author_id"=>"110", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'excepturi-maxime-72' AND "almanac_posts"."id" != 1) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 13ms (Views: 2.2ms | ActiveRecord: 0.5ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'kennedi@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "kennedi@example.org"], ["encrypted_password", "$2a$04$7BJAWq/Rvr5RndCJc92Zrea24nV7Qu1vzZRWbbvoi0UrQp5Mh/Vgy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 111], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["description", "Cum quam ex laboriosam dicta. Laboriosam consequatur cumque quasi consequatur fuga. Harum est consequuntur quibusdam vitae ullam ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Voluptas consequatur aliquid magni."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'placeat-esse-73' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 112], ["blog_id", 1], ["body", "Ea molestias sed. Quo autem iusto maxime mollitia. Magnam id vitae aut qui. Qui numquam quasi sunt nihil vitae quo. Esse ut placeat ipsa. Ut odit qui consequuntur reiciendis."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["excerpt", "Veritatis dolorem quo aut ut."], ["published", true], ["slug", "placeat-esse-73"], ["title", "Cupiditate quia perspiciatis perferendis voluptatem ipsa enim dolor."], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test73' OR lower(name) = 'rspec73' OR lower(name) = 'ruby73' OR lower(name) = '#rails73') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test73"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec73"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby73"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails73"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"ut-voluptas-74", "excerpt"=>"Ut est aut voluptatem.", "body"=>"Nihil ad sit. Non vel labore id aspernatur. Et nostrum voluptatem facilis quae voluptas officiis illum. Nesciunt eos sunt aut facilis. Reiciendis exercitationem voluptas natus. Necessitatibus sed doloremque commodi.", "published"=>true, "tag_list"=>"common,test74,rspec74,ruby74,#rails74", "author_id"=>"113", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'ut-voluptas-74' AND "almanac_posts"."id" != 1) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 12ms (Views: 1.5ms | ActiveRecord: 0.5ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ward.donnelly@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ward.donnelly@example.net"], ["encrypted_password", "$2a$04$eTUQ0R2ps0yFKcopwMdlPOFz93gezvzK2mPzie/hgJNaUnqhPU2m6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 114], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["description", "Qui ipsa fuga veniam consequuntur reprehenderit nihil voluptates. Qui non iusto quidem asperiores vel. Ut beatae quasi. Officiis iusto quia voluptatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sint ab et accusamus sed dolorum aliquid."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Ab sint maiores quis a sed quod accusantium.", "slug"=>"voluptas-et-75", "excerpt"=>"Beatae.", "body"=>"Atque aut eius. Rerum accusantium reprehenderit nam et sed saepe. Voluptatem ab aperiam fuga et officia reprehenderit eos. Est nemo vel nesciunt dolorem est. Voluptates corrupti rerum libero sunt. Sapiente repellat repellendus dolor necessitatibus reiciendis alias culpa.", "published"=>true, "tag_list"=>"common,test75,rspec75,ruby75,#rails75", "author_id"=>"115", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptas-et-75' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Atque aut eius. Rerum accusantium reprehenderit nam et sed saepe. Voluptatem ab aperiam fuga et officia reprehenderit eos. Est nemo vel nesciunt dolorem est. Voluptates corrupti rerum libero sunt. Sapiente repellat repellendus dolor necessitatibus reiciendis alias culpa."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["excerpt", "Beatae."], ["published", true], ["slug", "voluptas-et-75"], ["title", "Ab sint maiores quis a sed quod accusantium."], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test75' OR lower(name) = 'rspec75' OR lower(name) = 'ruby75' OR lower(name) = '#rails75') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test75"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec75"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails75"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 28ms (ActiveRecord: 2.4ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'nat.kozey@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "nat.kozey@example.com"], ["encrypted_password", "$2a$04$68pfvSdh81Cct6BnM5oeZuLsDfUQZMY3r6bTO2mmFwvJ2n1DKumj2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 116], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["description", "Est reprehenderit quibusdam fuga consequatur quam. Id et autem qui nobis nisi. Consequuntur sit saepe quia quod. Ipsam deleniti aperiam consequuntur libero autem. Est libero natus magni ratione illum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ut ullam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Dolorum nemo molestiae sequi iusto voluptatum.", "slug"=>"officiis-sed-76", "excerpt"=>"Nesciunt voluptas debitis saepe quis.", "body"=>"Sapiente est omnis. Necessitatibus explicabo voluptas sit recusandae quia fugit. Omnis eligendi repellendus est ut. Distinctio vero et eius maxime amet. Ea molestias sed. Quo autem iusto maxime mollitia.", "published"=>true, "tag_list"=>"common,test76,rspec76,ruby76,#rails76", "author_id"=>"117", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'officiis-sed-76' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Sapiente est omnis. Necessitatibus explicabo voluptas sit recusandae quia fugit. Omnis eligendi repellendus est ut. Distinctio vero et eius maxime amet. Ea molestias sed. Quo autem iusto maxime mollitia."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["excerpt", "Nesciunt voluptas debitis saepe quis."], ["published", true], ["slug", "officiis-sed-76"], ["title", "Dolorum nemo molestiae sequi iusto voluptatum."], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test76' OR lower(name) = 'rspec76' OR lower(name) = 'ruby76' OR lower(name) = '#rails76') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails76"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 28ms (ActiveRecord: 2.4ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ward.donnelly@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ward.donnelly@example.net"], ["encrypted_password", "$2a$04$hTh65BpXiBBf5qrkFIaN/.lO.eokxNWey6HrlZCHqlghpRScyNOEm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 118], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["description", "Qui ipsa fuga veniam consequuntur reprehenderit nihil voluptates. Qui non iusto quidem asperiores vel. Ut beatae quasi. Officiis iusto quia voluptatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sint ab et accusamus sed dolorum aliquid."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"qui-velit-77", "excerpt"=>"Explicabo eum itaque molestiae aut.", "body"=>"Voluptatum quia magni quaerat et quasi quia. Atque aut eius. Rerum accusantium reprehenderit nam et sed saepe. Voluptatem ab aperiam fuga et officia reprehenderit eos. Est nemo vel nesciunt dolorem est.", "published"=>true, "tag_list"=>"common,test77,rspec77,ruby77,#rails77", "author_id"=>"119", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-velit-77' LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 12ms (Views: 2.2ms | ActiveRecord: 0.4ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"   (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'freeman.dooley@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "freeman.dooley@example.net"], ["encrypted_password", "$2a$04$D07mm5efrj5VEFtM0nS3e.hikqN/9Kc7xNaZb22pJD0XSfYRZVz3."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 120], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["description", "Doloremque nulla eum dolores quasi. Quos quod unde commodi. Porro error qui et impedit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Tenetur natus magni qui."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"molestiae-sed-78", "excerpt"=>"Quia enim sed reiciendis.", "body"=>"Reiciendis provident minima et rem dolore. Tenetur veniam aliquam voluptatibus est maxime quia. Illum et maiores est harum nostrum ad quisquam. Ut quis fuga praesentium sit. Voluptas tempora autem et ex. Quae molestiae earum corrupti assumenda nostrum qui.", "published"=>true, "tag_list"=>"common,test78,rspec78,ruby78,#rails78", "author_id"=>"121", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'molestiae-sed-78' LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 1.5ms | ActiveRecord: 0.5ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jewell@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jewell@example.org"], ["encrypted_password", "$2a$04$aScNvz7zjh6Bxho7PAF3MO.8tMGoEIZEz2jyyzVsDoXboT8pX8enm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 122], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["description", "Perspiciatis et ratione incidunt aut. Quaerat debitis aspernatur dolorem fugiat ipsum. Odit dolorem a error facilis rerum quia illum. Quod explicabo qui molestias aliquam. Non soluta dolorem saepe qui itaque alias."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Animi iure molestias dolore nulla et."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 7ms (Views: 2.3ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'elvis@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "elvis@example.org"], ["encrypted_password", "$2a$04$5d0pcIHRSsXG8t1trG.71u442yL1Y4rO8PoOQgqnCMVkHaaChZlmG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 123], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["description", "Eum est dolor voluptate sapiente facilis maiores. Libero qui quis. Necessitatibus eum consectetur corporis enim rem corrupti iusto. Soluta sapiente id illum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "In voluptatem porro doloribus aperiam accusantium."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'praesentium-ipsum-79' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 124], ["blog_id", 1], ["body", "Corporis corrupti dolor voluptatibus quod in. Rem inventore molestias quidem. Voluptas dicta et a voluptate ut. Officiis excepturi animi nobis est possimus quia. Aperiam eum accusamus sed quidem ut sint quibusdam. Ut rerum eos numquam nesciunt et. Ullam esse qui in veritatis quia quia."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["excerpt", "Qui et porro explicabo dolorum impedit."], ["published", false], ["slug", "praesentium-ipsum-79"], ["title", "Inventore est voluptatem quas modi dicta veritatis."], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test79' OR lower(name) = 'rspec79' OR lower(name) = 'ruby79' OR lower(name) = '#rails79') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec79' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails79"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'omnis-tempora-80' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 125], ["blog_id", 1], ["body", "Harum est consequuntur quibusdam vitae ullam ut. Cupiditate quia perspiciatis perferendis voluptatem ipsa enim dolor. Aut laudantium incidunt. Et qui repudiandae. Incidunt nemo quisquam. Est sint nemo sed delectus amet. Sunt dicta necessitatibus quos."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["excerpt", "Necessitatibus sed."], ["published", false], ["slug", "omnis-tempora-80"], ["title", "Aliquid sequi sit quam optio in voluptate."], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test80' OR lower(name) = 'rspec80' OR lower(name) = 'ruby80' OR lower(name) = '#rails80') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test80' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test80"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec80"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby80"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails80"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'facere-laudantium-81' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 126], ["blog_id", 1], ["body", "Sed sequi nisi sit debitis ut mollitia omnis. Eum nam incidunt. Explicabo amet aut provident saepe. Non veritatis possimus commodi aut quis. Est consectetur sed quidem explicabo incidunt."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["excerpt", "Repellat qui."], ["published", false], ["slug", "facere-laudantium-81"], ["title", "Perspiciatis architecto nisi et corporis aut voluptas."], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test81' OR lower(name) = 'rspec81' OR lower(name) = 'ruby81' OR lower(name) = '#rails81') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test81"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec81"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby81"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails81"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.1ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f' ORDER BY written_at DESC, id DESC  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'madie_toy@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "madie_toy@example.net"], ["encrypted_password", "$2a$04$jhr750SwrDWIVHIvDjSrNu2Fy7pyR4vehSD2P3EcODVGBYzzZLO06"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 127], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["description", "Facere doloremque ut sunt et quae. Voluptatibus tempora ex. Voluptas et quae qui consequatur saepe ducimus totam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Eligendi dolorem nam assumenda est enim ipsa."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'velit-et-82' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 128], ["blog_id", 1], ["body", "Alias ut dignissimos. Quasi vero ratione. Vel rerum sed autem voluptatibus. Quo cum doloremque facere et. Quo est ut eos. Unde debitis sed labore qui corporis dolorem ullam. Non et debitis culpa qui iste."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["excerpt", "Mollitia."], ["published", true], ["slug", "velit-et-82"], ["title", "Maiores sed sit consequatur unde voluptas."], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test82' OR lower(name) = 'rspec82' OR lower(name) = 'ruby82' OR lower(name) = '#rails82') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test82"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec82"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby82"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails82"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-blanditiis-83' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 129], ["blog_id", 1], ["body", "Maxime et veritatis quo voluptatem dolorum eum. Animi odit quisquam quam nihil saepe quia facilis. Magni minima saepe corporis rerum. Neque voluptas ipsam vel eos recusandae. Quis delectus odio tenetur."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["excerpt", "Voluptas esse."], ["published", true], ["slug", "qui-blanditiis-83"], ["title", "Sit eos est qui incidunt."], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test83' OR lower(name) = 'rspec83' OR lower(name) = 'ruby83' OR lower(name) = '#rails83') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test83' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails83"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ducimus-aut-84' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 130], ["blog_id", 1], ["body", "Qui nulla et necessitatibus iste. Nobis omnis sed quam nostrum a ut. Quos sed ipsa quod nobis. Eum ipsam ab similique quasi eveniet hic. Incidunt repellat ab ut quos a ullam. Laboriosam quas optio voluptatem aliquam deserunt ipsa. Quo sit dolorem magni itaque consequatur deleniti magnam."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["excerpt", "Minima aut."], ["published", true], ["slug", "ducimus-aut-84"], ["title", "Fugiat nulla officia voluptatem aut dolore nam placeat."], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test84' OR lower(name) = 'rspec84' OR lower(name) = 'ruby84' OR lower(name) = '#rails84') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test84' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails84"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'repellat-et-85' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 131], ["blog_id", 1], ["body", "Eum quidem voluptatem. Molestiae labore eius incidunt vero quo dolores autem. Odit vel ipsa tempora deserunt. Ut eligendi odio aspernatur sit velit. Laudantium ipsum eveniet."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["excerpt", "Voluptates tempore tempora quia ea."], ["published", true], ["slug", "repellat-et-85"], ["title", "Modi et asperiores."], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test85' OR lower(name) = 'rspec85' OR lower(name) = 'ruby85' OR lower(name) = '#rails85') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails85"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'deleniti-consequatur-86' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 132], ["blog_id", 1], ["body", "Iure praesentium cupiditate aut ad. Deserunt excepturi magnam omnis odit rerum dignissimos et. Dolores non quia dolor accusamus. Placeat aspernatur numquam expedita. Aut cupiditate in animi quia. Voluptas labore officia. Eos minus iusto magnam molestiae officia asperiores."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["excerpt", "Unde quibusdam accusantium molestiae excepturi enim."], ["published", true], ["slug", "deleniti-consequatur-86"], ["title", "Debitis autem iusto sunt magnam esse."], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test86' OR lower(name) = 'rspec86' OR lower(name) = 'ruby86' OR lower(name) = '#rails86') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test86"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec86"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby86"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails86"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.1ms) Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ward.donnelly@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ward.donnelly@example.net"], ["encrypted_password", "$2a$04$pdIshigPOPO3pqs7f7DC/eEaoIP4JN9wyhLXPoVxkgVLx94JgE6Pm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 133], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["description", "Qui ipsa fuga veniam consequuntur reprehenderit nihil voluptates. Qui non iusto quidem asperiores vel. Ut beatae quasi. Officiis iusto quia voluptatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sint ab et accusamus sed dolorum aliquid."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptas-et-87' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 134], ["blog_id", 1], ["body", "Atque aut eius. Rerum accusantium reprehenderit nam et sed saepe. Voluptatem ab aperiam fuga et officia reprehenderit eos. Est nemo vel nesciunt dolorem est. Voluptates corrupti rerum libero sunt. Sapiente repellat repellendus dolor necessitatibus reiciendis alias culpa."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["excerpt", "Beatae."], ["published", true], ["slug", "voluptas-et-87"], ["title", "Ab sint maiores quis a sed quod accusantium."], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test87' OR lower(name) = 'rspec87' OR lower(name) = 'ruby87' OR lower(name) = '#rails87') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails87"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "brooklyn@example.com"], ["author_name", "Nat Kozey"], ["body", "Facere tempora velit molestiae ea quod nulla. Quas aliquid repudiandae eum perspiciatis eveniet non nisi."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "luigi@example.com"], ["author_name", "Berneice Renner I"], ["body", "Officiis omnis a ea nostrum."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "eden@example.com"], ["author_name", "Timmy Hand"], ["body", "Nihil autem nostrum voluptate."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "patience@example.com"], ["author_name", "Blanche Moore V"], ["body", "Id laboriosam sit et provident est voluptatem facere."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "roberto.hodkiewicz@example.net"], ["author_name", "Clair Armstrong"], ["body", "Aut eaque odit consectetur est. Laborum ipsum atque aut aliquam."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "otto@example.net"], ["author_name", "Carolina Wehner"], ["body", "Eum at consequuntur dicta sed veritatis numquam. Consequatur minus ea aut et necessitatibus voluptatem. Non unde eum atque et sit repellendus."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "josephine_kuhic@example.net"], ["author_name", "Cortez Schiller"], ["body", "Eum cumque maxime est. Praesentium iusto accusantium. Et voluptatem nihil."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "lucious_cartwright@example.net"], ["author_name", "Libbie Considine V"], ["body", "Odit officia placeat quae est."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "peggie@example.net"], ["author_name", "Makenzie Paucek"], ["body", "Sit ea cum. Sapiente qui officia est expedita."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "gudrun_howell@example.net"], ["author_name", "Antonio Walsh"], ["body", "Ut vero culpa. Architecto eos quo ad quia fuga asperiores."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "dan@example.net"], ["author_name", "Mariam Kohler"], ["body", "Id iusto distinctio. Accusantium autem occaecati. Ut pariatur quia qui ratione id perspiciatis consequatur."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "hermina_tremblay@example.org"], ["author_name", "Shawna O'Keefe"], ["body", "Expedita impedit perferendis. Mollitia laborum ipsa excepturi dignissimos. Nostrum repudiandae est voluptatibus omnis quod veniam minus."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "rex@example.com"], ["author_name", "Eloise Bergnaum"], ["body", "Harum esse officiis labore ducimus pariatur temporibus. Consequatur aut sed quasi assumenda."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "mollie.mohr@example.net"], ["author_name", "Jody Frami"], ["body", "Et recusandae commodi ea maxime."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "lilliana.prohaska@example.com"], ["author_name", "Miss Marco Robel"], ["body", "Fugiat omnis rerum occaecati provident optio. Et temporibus corrupti perferendis quis tenetur. Praesentium non impedit et fugiat."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'kendall@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "kendall@example.com"], ["encrypted_password", "$2a$04$HnktAAna8BCEC/ZN0BhR3uyEcfFxkedio.LmmwZgNbmhpsa2q7eOC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 135], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["description", "Et asperiores qui magni. Tempora laborum voluptates rerum vel itaque. Error excepturi sint."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Qui ea officia dicta voluptas repellendus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ratione-omnis-88' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 136], ["blog_id", 1], ["body", "Quaerat tempore distinctio unde officia earum aspernatur nihil. Cumque architecto nihil. Voluptas quia ipsam eius consequatur mollitia soluta. Neque nulla reiciendis asperiores alias est quibusdam. Tempora sunt quia est qui ut iusto. Ullam eos voluptates dolorem quibusdam id. Sint quasi beatae est eos reprehenderit doloribus non."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["excerpt", "Veniam enim est et reprehenderit."], ["published", true], ["slug", "ratione-omnis-88"], ["title", "Odio eos iusto."], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test88' OR lower(name) = 'rspec88' OR lower(name) = 'ruby88' OR lower(name) = '#rails88') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails88"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "lenny_koepp@example.org"], ["author_name", "Daisy Heathcote"], ["body", "Laborum corrupti cumque. Et magni odit a animi consectetur sit velit. Nostrum sapiente maiores ex sunt debitis unde."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "abdiel@example.org"], ["author_name", "Gavin Paucek"], ["body", "In et illo vel itaque porro possimus adipisci. Aspernatur voluptas ducimus sint."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "terrill@example.com"], ["author_name", "Margarett Wintheiser"], ["body", "Dolor voluptas et. Et enim dolorum voluptas molestiae."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "timmy.cruickshank@example.com"], ["author_name", "Jessie Lebsack"], ["body", "Ea iusto iure neque. Error est excepturi. Qui perferendis dolore nulla."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "leif.tremblay@example.com"], ["author_name", "Mr. Milford Hamill"], ["body", "Maiores nam maxime officia a consequatur."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "anderson@example.org"], ["author_name", "Mittie Jewess"], ["body", "Est odio ea ipsa quis. Animi corrupti ut. Vel quae incidunt dolores sunt cum magnam est."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "constance@example.net"], ["author_name", "Lempi Murphy V"], ["body", "Voluptatem et officiis molestiae culpa et deleniti ipsum. Facere est porro doloribus consequatur. Consectetur enim quis harum minus."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "neil@example.com"], ["author_name", "Kennith Davis"], ["body", "Qui omnis perferendis. Incidunt nemo fuga odit illum aperiam."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "holly@example.net"], ["author_name", "Priscilla Simonis DVM"], ["body", "Placeat amet facilis repellat veritatis. Labore occaecati blanditiis quam."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "wava_moen@example.net"], ["author_name", "Judson McLaughlin"], ["body", "Similique omnis ea adipisci voluptatibus assumenda. Quo aut soluta. Fuga alias non ab."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "mona_bayer@example.org"], ["author_name", "Miss Mitchel Harvey"], ["body", "Hic id autem esse earum nemo. Omnis ratione similique impedit eligendi."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "kyra.lang@example.com"], ["author_name", "Mariam Herzog V"], ["body", "Id est tenetur omnis labore iure. Vero qui laudantium."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "westley@example.com"], ["author_name", "Nels Mann"], ["body", "Voluptas nulla rem et aut deserunt aliquid cupiditate. Nihil voluptatem odit doloribus recusandae modi fugit occaecati."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "sherman@example.org"], ["author_name", "Dr. Esperanza Lakin"], ["body", "Rerum quo aut consequuntur ut autem similique consequatur. Excepturi magnam voluptates unde libero aut."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "cole@example.org"], ["author_name", "Mr. Darrell Kihn"], ["body", "Sed et at."], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ward.donnelly@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ward.donnelly@example.net"], ["encrypted_password", "$2a$04$wKUsbKRBgLJ7pYyGnslOsuCRc6koj5PV.MkqofEN1l7JLQrq415vC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 137], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["description", "Qui ipsa fuga veniam consequuntur reprehenderit nihil voluptates. Qui non iusto quidem asperiores vel. Ut beatae quasi. Officiis iusto quia voluptatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sint ab et accusamus sed dolorum aliquid."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Testz", "description"=>"Quod quia odio rerum eos quam aperiam. Et culpa rem quo magni corporis molestiae. Deleniti odit non ut blanditiis aut similique. Est error aut inventore veniam odit sit.", "author_id"=>"138"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Testz', "description" = 'Quod quia odio rerum eos quam aperiam. Et culpa rem quo magni corporis molestiae. Deleniti odit non ut blanditiis aut similique. Est error aut inventore veniam odit sit.', "author_id" = 138, "updated_at" = '2012-12-28 04:41:25.935984' WHERE "almanac_blogs"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 7ms (ActiveRecord: 0.4ms) Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'bradford@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "bradford@example.net"], ["encrypted_password", "$2a$04$vN7YU3LZTxOfXDgq.2aL7OaiNgctuEBLstXUuam9PdfRmpTvgsuTu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 139], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["description", "Modi neque enim hic placeat voluptate et. Inventore aut aliquam. Labore quis minima. Reiciendis qui velit quibusdam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ipsum reprehenderit non repudiandae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Harum doloribus error officiis.", "description"=>"Nostrum ab unde in. Odio voluptate veritatis ipsam fugiat. Aperiam eum accusamus sed quidem ut sint quibusdam. Ut rerum eos numquam nesciunt et.", "author_id"=>"140"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Harum doloribus error officiis.', "description" = 'Nostrum ab unde in. Odio voluptate veritatis ipsam fugiat. Aperiam eum accusamus sed quidem ut sint quibusdam. Ut rerum eos numquam nesciunt et.', "author_id" = 140, "updated_at" = '2012-12-28 04:41:25.956012' WHERE "almanac_blogs"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 5ms (ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ward.donnelly@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ward.donnelly@example.net"], ["encrypted_password", "$2a$04$nHXSturTTZAJrBVo0WdK.uGrhiScd3QmWDDm.a31lOxWMm0V.5.eq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 141], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["description", "Qui ipsa fuga veniam consequuntur reprehenderit nihil voluptates. Qui non iusto quidem asperiores vel. Ut beatae quasi. Officiis iusto quia voluptatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sint ab et accusamus sed dolorum aliquid."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Quod quia odio rerum eos quam aperiam. Et culpa rem quo magni corporis molestiae. Deleniti odit non ut blanditiis aut similique. Est error aut inventore veniam odit sit.", "author_id"=>"142"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 8ms (Views: 3.1ms | ActiveRecord: 0.2ms) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'bradford@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "bradford@example.net"], ["encrypted_password", "$2a$04$b5OSUEWEdslFrpJ7bLFXq.V0FDRQnndhUmYc9cxtpkVjcz0eqrdKi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 143], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00], ["description", "Modi neque enim hic placeat voluptate et. Inventore aut aliquam. Labore quis minima. Reiciendis qui velit quibusdam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ipsum reprehenderit non repudiandae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Rem inventore molestias quidem. Voluptas dicta et a voluptate ut. Officiis excepturi animi nobis est possimus quia. Aperiam eum accusamus sed quidem ut sint quibusdam. Ut rerum eos numquam nesciunt et.", "author_id"=>"144"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 1.4ms | ActiveRecord: 0.2ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ward.donnelly@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:26 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ward.donnelly@example.net"], ["encrypted_password", "$2a$04$BHtQ/EGMY/IfCMHwEq.mX.fZ52AJPUTfERs8uoZvjEsYySWQDYd6."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"  Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Sint ab et accusamus sed dolorum aliquid.", "description"=>"Qui ipsa fuga veniam consequuntur reprehenderit nihil voluptates. Qui non iusto quidem asperiores vel. Ut beatae quasi. Officiis iusto quia voluptatibus.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:26 UTC +00:00], ["description", "Qui ipsa fuga veniam consequuntur reprehenderit nihil voluptates. Qui non iusto quidem asperiores vel. Ut beatae quasi. Officiis iusto quia voluptatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sint ab et accusamus sed dolorum aliquid."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 7ms (ActiveRecord: 0.8ms)  (0.0ms) SELECT COUNT(*) FROM "almanac_blogs"   (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'clifton.okeefe@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:26 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "clifton.okeefe@example.net"], ["encrypted_password", "$2a$04$74y7OVPArZdTEfg6X3ox7.W7JlRwlH4CEVLML.nbA.mSHw3TMFtUC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Natus velit harum.", "description"=>"Dolor rerum voluptatem dignissimos excepturi tenetur dolores. Consequatur qui dolorem et fugit asperiores. Veritatis dolorem qui est deleniti reprehenderit.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:41:26 UTC +00:00], ["description", "Dolor rerum voluptatem dignissimos excepturi tenetur dolores. Consequatur qui dolorem et fugit asperiores. Veritatis dolorem qui est deleniti reprehenderit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Natus velit harum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:41:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 6ms (ActiveRecord: 0.8ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ward.donnelly@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:26 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ward.donnelly@example.net"], ["encrypted_password", "$2a$04$YxHp4V/zMkSmVqXkNENAz.vrkPfHEJOrjndCBgjGT8VoX8F/ZFZiu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"  Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Sint ab et accusamus sed dolorum aliquid ad. Voluptatem assumenda autem odit ut quia molestiae tenetur. Qui non iusto quidem asperiores vel. Ut beatae quasi. Officiis iusto quia voluptatibus.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 2.1ms | ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"   (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'clifton.okeefe@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:41:26 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "clifton.okeefe@example.net"], ["encrypted_password", "$2a$04$mzp7/jTQxTK0P3ObNhZhm.1egfrhtBAX1T2GYY/MHzL44eNCPgrEm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:41:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Consequatur et voluptatem consequuntur eum qui. Dolor rerum voluptatem dignissimos excepturi tenetur dolores. Consequatur qui dolorem et fugit asperiores. Veritatis dolorem qui est deleniti reprehenderit.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 1.4ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction Connecting to database specified by database.yml  (0.9ms) DELETE FROM "users";  (0.2ms) DELETE FROM sqlite_sequence where name = 'users';  (0.7ms) DELETE FROM "almanac_posts";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_posts';  (0.5ms) DELETE FROM "almanac_images";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_images';  (0.6ms) DELETE FROM "tags";  (0.1ms) DELETE FROM sqlite_sequence where name = 'tags';  (0.8ms) DELETE FROM "taggings";  (0.1ms) DELETE FROM sqlite_sequence where name = 'taggings';  (0.6ms) DELETE FROM "almanac_comments";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_comments';  (0.6ms) DELETE FROM "almanac_blogs";  (0.4ms) DELETE FROM sqlite_sequence where name = 'almanac_blogs';  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (1.7ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'liza_schneider@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.2ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "liza_schneider@example.com"], ["encrypted_password", "$2a$04$.Y4XeqNpk4vyqFuD5sJ/q.jDqzrU5h.E6H1Bgd4PbIqv2EHV/lUCq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 2], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["description", "Qui nulla et enim magni sapiente. Numquam sit quasi sint. Sapiente nihil numquam qui. Laborum soluta aut ut voluptas. Autem eaque nulla quaerat repellat ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Consequatur eum sit quidem aliquid reiciendis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consequatur-accusantium-1' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Molestiae facilis nesciunt pariatur ut. Alias itaque facilis asperiores incidunt qui in sit. Vero alias nisi sed unde aliquid aut. Dolorem libero voluptas eius odit nulla. Sed neque non vel odio veniam delectus. Tempora eveniet laborum quia beatae."], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["excerpt", "Et impedit nisi."], ["published", true], ["slug", "consequatur-accusantium-1"], ["title", "Necessitatibus quia sed libero quis est ullam dolor."], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test1' OR lower(name) = 'rspec1' OR lower(name) = 'ruby1' OR lower(name) = '#rails1') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails1"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Ford Rath V", "author_email"=>"ilene@example.org", "body"=>"Velit quisquam nesciunt voluptatum dolor ducimus consequatur. Ut eos quos quia consequuntur voluptate id."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "ilene@example.org"], ["author_name", "Ford Rath V"], ["body", "Velit quisquam nesciunt voluptatum dolor ducimus consequatur. Ut eos quos quia consequuntur voluptate id."], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/consequatur-accusantium-1 Completed 302 Found in 19ms (ActiveRecord: 0.7ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"   (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lonnie@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "lonnie@example.com"], ["encrypted_password", "$2a$04$GmE3Kp2IaxJGyugjh3GWK.1w8a8PreDQHnEm/W.ppmNz6GgXjCv5K"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 4], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["description", "Iste accusamus perferendis. Quam accusamus et. Nemo rerum et esse maiores."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Magni et consequatur beatae odio modi culpa."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'cumque-natus-2' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 3], ["blog_id", 1], ["body", "Iusto nisi quasi aut ut aliquid. Et perferendis distinctio necessitatibus mollitia. Excepturi aliquid accusantium tenetur non. Aut temporibus accusamus. Natus iure aut quas quos quis nisi."], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["excerpt", "Temporibus explicabo sed et magnam facilis."], ["published", true], ["slug", "cumque-natus-2"], ["title", "Assumenda magni magnam sunt autem deleniti ipsa quae."], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test2' OR lower(name) = 'rspec2' OR lower(name) = 'ruby2' OR lower(name) = '#rails2') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test2"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec2"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby2"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails2"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Ms. Alaina Littel", "author_email"=>"paul_stoltenberg@example.org", "body"=>"Voluptas esse magnam dolorem. Sed quibusdam necessitatibus unde."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "paul_stoltenberg@example.org"], ["author_name", "Ms. Alaina Littel"], ["body", "Voluptas esse magnam dolorem. Sed quibusdam necessitatibus unde."], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/cumque-natus-2 Completed 302 Found in 8ms (ActiveRecord: 0.5ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'liza_schneider@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "liza_schneider@example.com"], ["encrypted_password", "$2a$04$QDY.4eGCiUTwCtHrpktBnefW2QzJSQ3CfqmVMt5YNCzCyA8lElW7m"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 6], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["description", "Qui nulla et enim magni sapiente. Numquam sit quasi sint. Sapiente nihil numquam qui. Laborum soluta aut ut voluptas. Autem eaque nulla quaerat repellat ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Consequatur eum sit quidem aliquid reiciendis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consequatur-accusantium-3' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 5], ["blog_id", 1], ["body", "Molestiae facilis nesciunt pariatur ut. Alias itaque facilis asperiores incidunt qui in sit. Vero alias nisi sed unde aliquid aut. Dolorem libero voluptas eius odit nulla. Sed neque non vel odio veniam delectus. Tempora eveniet laborum quia beatae."], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["excerpt", "Et impedit nisi."], ["published", true], ["slug", "consequatur-accusantium-3"], ["title", "Necessitatibus quia sed libero quis est ullam dolor."], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test3' OR lower(name) = 'rspec3' OR lower(name) = 'ruby3' OR lower(name) = '#rails3') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby3"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails3"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_comments"  Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Ford Rath V", "author_email"=>"ilene@example.org", "body"=>nil}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Redirected to http://test.host/almanac/consequatur-accusantium-3 Completed 302 Found in 8ms (ActiveRecord: 0.2ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'francesco_corkery@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "francesco_corkery@example.com"], ["encrypted_password", "$2a$04$JC98vKMK0Eu22KTSrQ0mb.QYnmrjemcqyV4kAZOkI/vO9dV3y3cia"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 8], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["description", "Est deleniti tempora aliquam. Quo alias assumenda numquam. Quod non eos unde."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Omnis ipsa reiciendis voluptas ut autem quis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'distinctio-maiores-4' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 7], ["blog_id", 1], ["body", "Consequatur inventore eveniet doloremque officiis. Suscipit sit expedita. Et magnam qui exercitationem non. Est nulla delectus maiores sed atque voluptatibus et. Est omnis ratione ut quis sed sint. Beatae repellat vitae enim sit. Recusandae quia dolores."], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["excerpt", "Quaerat et dolor praesentium et."], ["published", true], ["slug", "distinctio-maiores-4"], ["title", "Et aut assumenda praesentium."], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test4' OR lower(name) = 'rspec4' OR lower(name) = 'ruby4' OR lower(name) = '#rails4') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test4"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails4"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Alaina Littel", "author_email"=>"paul_stoltenberg@example.org", "body"=>"Voluptas esse magnam dolorem. Sed quibusdam necessitatibus unde."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "paul_stoltenberg@example.org"], ["author_name", "Alaina Littel"], ["body", "Voluptas esse magnam dolorem. Sed quibusdam necessitatibus unde."], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/distinctio-maiores-4 Completed 302 Found in 7ms (ActiveRecord: 0.4ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'liza_schneider@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "liza_schneider@example.com"], ["encrypted_password", "$2a$04$t5u7SEWx3gRnnpKiqej3pu2MKXZtah7.YL/YbSqZxf3QYp0Uij1Wa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 10], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["description", "Qui nulla et enim magni sapiente. Numquam sit quasi sint. Sapiente nihil numquam qui. Laborum soluta aut ut voluptas. Autem eaque nulla quaerat repellat ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Consequatur eum sit quidem aliquid reiciendis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consequatur-accusantium-5' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 9], ["blog_id", 1], ["body", "Molestiae facilis nesciunt pariatur ut. Alias itaque facilis asperiores incidunt qui in sit. Vero alias nisi sed unde aliquid aut. Dolorem libero voluptas eius odit nulla. Sed neque non vel odio veniam delectus. Tempora eveniet laborum quia beatae."], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["excerpt", "Et impedit nisi."], ["published", true], ["slug", "consequatur-accusantium-5"], ["title", "Necessitatibus quia sed libero quis est ullam dolor."], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test5' OR lower(name) = 'rspec5' OR lower(name) = 'ruby5' OR lower(name) = '#rails5') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec5"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby5"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails5"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "ilene@example.org"], ["author_name", "Ford Rath V"], ["body", "Velit quisquam nesciunt voluptatum dolor ducimus consequatur. Ut eos quos quia consequuntur voluptate id."], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_comments" Processing by Almanac::CommentsController#destroy as HTML Parameters: {"id"=>"1", "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "almanac_comments" WHERE "almanac_comments"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/1 Completed 302 Found in 7ms (ActiveRecord: 0.4ms)  (0.0ms) SELECT COUNT(*) FROM "almanac_comments"  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lonnie@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "lonnie@example.com"], ["encrypted_password", "$2a$04$daoIUNxhQKX4H/N55w1RwOqGLc/5DpRm1CWWefgzGUWNXPJzd4j5G"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 12], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["description", "Iste accusamus perferendis. Quam accusamus et. Nemo rerum et esse maiores."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Magni et consequatur beatae odio modi culpa."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'cumque-natus-6' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 11], ["blog_id", 1], ["body", "Iusto nisi quasi aut ut aliquid. Et perferendis distinctio necessitatibus mollitia. Excepturi aliquid accusantium tenetur non. Aut temporibus accusamus. Natus iure aut quas quos quis nisi."], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["excerpt", "Temporibus explicabo sed et magnam facilis."], ["published", true], ["slug", "cumque-natus-6"], ["title", "Assumenda magni magnam sunt autem deleniti ipsa quae."], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test6' OR lower(name) = 'rspec6' OR lower(name) = 'ruby6' OR lower(name) = '#rails6') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test6"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec6"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby6"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails6"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "paul_stoltenberg@example.org"], ["author_name", "Ms. Alaina Littel"], ["body", "Voluptas esse magnam dolorem. Sed quibusdam necessitatibus unde."], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#destroy as HTML Parameters: {"id"=>"1", "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) DELETE FROM "almanac_comments" WHERE "almanac_comments"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/1 Completed 302 Found in 6ms (ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'liza_schneider@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "liza_schneider@example.com"], ["encrypted_password", "$2a$04$mhYykMVR3sKwOHyBdJB6XeZnFaNsvVrENMwWc5nufOZunaS4jZ.PG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 13], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["description", "Ut ut quidem dignissimos et sapiente laudantium. Enim accusamus porro fuga molestias ea ratione. Sint dignissimos reiciendis consequatur quaerat dolores excepturi sit. Dolorem ipsam corporis alias dolor illum culpa earum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Necessitatibus quia sed libero quis est ullam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'esse-quis-7' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 14], ["blog_id", 1], ["body", "Dignissimos rerum dicta consectetur totam velit. Ad et rem nam cum repudiandae. Qui nulla et enim magni sapiente. Numquam sit quasi sint. Sapiente nihil numquam qui. Laborum soluta aut ut voluptas. Autem eaque nulla quaerat repellat ut."], ["created_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["excerpt", "Sed neque non vel odio."], ["published", true], ["slug", "esse-quis-7"], ["title", "Voluptatem veniam dolorum fugiat dignissimos repudiandae."], ["updated_at", Fri, 28 Dec 2012 04:43:03 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test7' OR lower(name) = 'rspec7' OR lower(name) = 'ruby7' OR lower(name) = '#rails7') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby7"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails7"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "ilene@example.org"], ["author_name", "Ford Rath V"], ["body", "Velit quisquam nesciunt voluptatum dolor ducimus consequatur. Ut eos quos quia consequuntur voluptate id."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "vincenzo@example.net"], ["author_name", "Lonnie Adams"], ["body", "Molestias dignissimos neque deleniti quam. Possimus eius molestiae rem minus voluptatem unde et."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "emie@example.org"], ["author_name", "Alexys Bode"], ["body", "Nisi sed autem. Perferendis deserunt et eveniet quisquam voluptatum laboriosam dolorum. Ex accusantium officiis aliquid qui tempora."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "georgianna.feil@example.net"], ["author_name", "Rowena Corwin"], ["body", "Quia voluptatem molestias maxime. Soluta dolores doloribus rerum blanditiis similique quibusdam non."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "tristian@example.org"], ["author_name", "Emie Jacobs"], ["body", "Neque non et. Ex voluptas incidunt consequuntur."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "jace@example.net"], ["author_name", "Werner Erdman"], ["body", "Quae sit recusandae."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "merle.jast@example.org"], ["author_name", "Sarah Bartoletti"], ["body", "Sapiente sed ea necessitatibus."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "electa@example.org"], ["author_name", "Scotty King"], ["body", "Veritatis cum perferendis ex ut."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "romaine_shanahan@example.org"], ["author_name", "Vernie Waters"], ["body", "Consequatur eveniet ut recusandae reprehenderit aut voluptas."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "hans@example.org"], ["author_name", "Ms. Stan Bartoletti"], ["body", "Nobis consequatur itaque soluta. Laudantium voluptatem cum qui. Eius deleniti laborum sit est sint est qui."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "alan.abernathy@example.org"], ["author_name", "Michel Crooks"], ["body", "Enim cumque eos sequi unde odit. Aut consequatur suscipit dolorum qui aut itaque rem."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "erika@example.org"], ["author_name", "Litzy Volkman"], ["body", "Iusto perferendis natus eum vitae et ipsa. Officia suscipit ratione dolor. Recusandae harum magni corporis nulla vitae facere."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "ashton@example.com"], ["author_name", "Maximillia Franecki"], ["body", "Doloremque eos ut perspiciatis eos."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "corbin@example.net"], ["author_name", "Brennan Schaefer"], ["body", "Quia eos dicta hic deserunt quae fuga. Omnis quam delectus temporibus minus."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "kirk.sauer@example.net"], ["author_name", "Willard Kris Sr."], ["body", "Dolore qui est quia corrupti. Ut nobis porro consequuntur. Alias facilis deleniti dolores temporibus ratione."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'chelsey@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "chelsey@example.net"], ["encrypted_password", "$2a$04$/cpHXmHnfAHEArjNllC5Uejyv0cOpCpu0VjvzPIclCyE6vuEhRD5i"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 15], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["description", "Ipsa omnis necessitatibus autem dolores. Similique dolore officiis ex. Et voluptas a."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Repudiandae animi voluptatum similique labore."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'excepturi-dolorum-8' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 16], ["blog_id", 1], ["body", "Expedita tenetur inventore nam laborum. Consequatur natus soluta. Itaque laboriosam voluptatem et amet et. Aut atque est cumque similique. Doloribus enim aut sed amet recusandae facilis et. Veniam et asperiores rerum provident voluptas qui aut. A incidunt ab."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["excerpt", "Eveniet dolorum quis ex hic."], ["published", true], ["slug", "excepturi-dolorum-8"], ["title", "Quod sunt inventore sed qui et est."], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test8' OR lower(name) = 'rspec8' OR lower(name) = 'ruby8' OR lower(name) = '#rails8') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails8"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "raquel@example.org"], ["author_name", "Vidal Bechtelar"], ["body", "Repellat nobis voluptas quis quos fugiat."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "nikolas_klocko@example.com"], ["author_name", "Kamron Osinski"], ["body", "Ducimus alias officia. Maxime numquam repellat impedit. Quibusdam aspernatur laudantium aut et et ipsa expedita."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "velma_emmerich@example.com"], ["author_name", "Irwin Franecki"], ["body", "Quia et iure tempore qui perspiciatis delectus sunt. Dolore odio ut. Culpa recusandae et blanditiis laborum ab."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "virginia_bernier@example.org"], ["author_name", "Santos Shanahan Sr."], ["body", "Accusantium est est sunt architecto et aut iusto."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "kasey@example.com"], ["author_name", "Miss Heath Casper"], ["body", "Labore corrupti omnis accusamus ipsum impedit repudiandae unde. Perferendis quod consequatur earum."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "brielle.mccullough@example.com"], ["author_name", "Davonte Robel"], ["body", "Labore recusandae quasi ullam nisi enim adipisci. Sint quos rerum libero maiores cum voluptates. Ducimus dolores qui et at sunt cupiditate."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "eleonore@example.com"], ["author_name", "Alden Osinski"], ["body", "Modi doloremque animi quia et minus est. Iste qui rem blanditiis dolores et quod."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "carlos@example.net"], ["author_name", "Leonie Schultz"], ["body", "Totam et et."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "madalyn_ruel@example.net"], ["author_name", "Bethany Abernathy DDS"], ["body", "Facilis quia sit sed debitis."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "caria@example.net"], ["author_name", "Carmine Harvey"], ["body", "Quae et sit qui. Quia ut rerum reprehenderit. Laudantium perferendis sint dolorem ipsa sed officiis necessitatibus."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "quinn.fisher@example.com"], ["author_name", "Bertrand Fadel"], ["body", "Ex libero occaecati illum voluptates possimus et voluptatum."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "evans.dubuque@example.net"], ["author_name", "Nathaniel Runolfsson"], ["body", "Maiores qui quos laudantium qui dicta."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "ada.koepp@example.net"], ["author_name", "Vergie Koelpin Sr."], ["body", "Pariatur et sit inventore sequi repellendus."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "amelie.corkery@example.org"], ["author_name", "Narciso O'Kon"], ["body", "Id reiciendis molestiae."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "allie@example.org"], ["author_name", "Maria Dach Jr."], ["body", "Sed vero dolores. Deleniti ea minus fugiat qui nam quis optio."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'liza_schneider@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "liza_schneider@example.com"], ["encrypted_password", "$2a$04$bazAHciaKDxSu53UP./iL.EHHMOpI6UIVvMRDvC08pBr.qM2OUs2S"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 17], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["description", "Ut ut quidem dignissimos et sapiente laudantium. Enim accusamus porro fuga molestias ea ratione. Sint dignissimos reiciendis consequatur quaerat dolores excepturi sit. Dolorem ipsam corporis alias dolor illum culpa earum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Necessitatibus quia sed libero quis est ullam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Testz", "description"=>"Maiores dolores dolor aut. Eos exercitationem iste natus nulla dignissimos ea soluta. Illo voluptatum molestiae possimus dolorem. Aut ut praesentium aliquam consequatur quas odio qui.", "author_id"=>"18"}} Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Testz', "description" = 'Maiores dolores dolor aut. Eos exercitationem iste natus nulla dignissimos ea soluta. Illo voluptatum molestiae possimus dolorem. Aut ut praesentium aliquam consequatur quas odio qui.', "author_id" = 18, "updated_at" = '2012-12-28 04:43:04.196506' WHERE "almanac_blogs"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 10ms (ActiveRecord: 0.5ms) Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'harry@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "harry@example.org"], ["encrypted_password", "$2a$04$wAMSAjDCagno5moDFdMq9.1z6q3cxbeUzWxK3FCZPcLHZWtoUieJ."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 19], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["description", "Voluptatem et maiores et vero rerum sed. Minus ut quia dignissimos vel porro fugit ut. Ut impedit quis molestias."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Repudiandae cupiditate."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Sint veritatis aspernatur aut.", "description"=>"Unde est maxime dolor. Maiores perferendis magni quisquam optio qui placeat. Quo voluptas quis in unde aperiam atque odio.", "author_id"=>"20"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Sint veritatis aspernatur aut.', "description" = 'Unde est maxime dolor. Maiores perferendis magni quisquam optio qui placeat. Quo voluptas quis in unde aperiam atque odio.', "author_id" = 20, "updated_at" = '2012-12-28 04:43:04.217675' WHERE "almanac_blogs"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 5ms (ActiveRecord: 0.3ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'liza_schneider@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "liza_schneider@example.com"], ["encrypted_password", "$2a$04$VctD8ijX8qU7dRADv4ekZOaSk6L/uVX2wzMN37S3xFnBjpi/Ur4gO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 21], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["description", "Ut ut quidem dignissimos et sapiente laudantium. Enim accusamus porro fuga molestias ea ratione. Sint dignissimos reiciendis consequatur quaerat dolores excepturi sit. Dolorem ipsam corporis alias dolor illum culpa earum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Necessitatibus quia sed libero quis est ullam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Maiores dolores dolor aut. Eos exercitationem iste natus nulla dignissimos ea soluta. Illo voluptatum molestiae possimus dolorem. Aut ut praesentium aliquam consequatur quas odio qui.", "author_id"=>"22"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 19ms (Views: 13.2ms | ActiveRecord: 0.2ms) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'harry@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "harry@example.org"], ["encrypted_password", "$2a$04$AZxYGnEA3LjSkp8t4OYCoeLFSaQ2wCDCM0P7lo38B1d1ESgE2Nh0u"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 23], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["description", "Voluptatem et maiores et vero rerum sed. Minus ut quia dignissimos vel porro fugit ut. Ut impedit quis molestias."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Repudiandae cupiditate."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Enim est reprehenderit itaque quo nesciunt. Unde est maxime dolor. Maiores perferendis magni quisquam optio qui placeat. Quo voluptas quis in unde aperiam atque odio. Qui culpa reprehenderit.", "author_id"=>"24"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 1.5ms | ActiveRecord: 0.2ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'liza_schneider@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "liza_schneider@example.com"], ["encrypted_password", "$2a$04$T81sWHLJtY0Z2KJoTkb9au49DV.lCpzvYVuxcpq8pDA3hdj4Cl0g6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"  Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Necessitatibus quia sed libero quis est ullam.", "description"=>"Ut ut quidem dignissimos et sapiente laudantium. Enim accusamus porro fuga molestias ea ratione. Sint dignissimos reiciendis consequatur quaerat dolores excepturi sit. Dolorem ipsam corporis alias dolor illum culpa earum.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["description", "Ut ut quidem dignissimos et sapiente laudantium. Enim accusamus porro fuga molestias ea ratione. Sint dignissimos reiciendis consequatur quaerat dolores excepturi sit. Dolorem ipsam corporis alias dolor illum culpa earum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Necessitatibus quia sed libero quis est ullam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 7ms (ActiveRecord: 0.9ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"   (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'linwood@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "linwood@example.com"], ["encrypted_password", "$2a$04$y/IeKR6BxkHXSs5pFv1DTelPoJEoYKqzzXCY3yv6RwUs6s2iWGWDu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Dolore excepturi sint animi architecto eos.", "description"=>"Suscipit incidunt voluptatem velit error voluptas cum. Earum dolor ex vitae ut vel modi. Harum provident voluptatibus totam magnam rerum. Totam nihil sint repudiandae vel ut dolores enim. Ullam aliquid quae fugiat.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["description", "Suscipit incidunt voluptatem velit error voluptas cum. Earum dolor ex vitae ut vel modi. Harum provident voluptatibus totam magnam rerum. Totam nihil sint repudiandae vel ut dolores enim. Ullam aliquid quae fugiat."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolore excepturi sint animi architecto eos."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 7ms (ActiveRecord: 0.9ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'liza_schneider@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "liza_schneider@example.com"], ["encrypted_password", "$2a$04$vqIw8znvh8mgSWxVI1PvTO4wO2XxTrXSsQ8ftIAzUJeBXoreU75Rm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"  Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Voluptatum accusamus eveniet veniam sed unde sint. Praesentium hic et et. Facere minima fuga aut libero omnis. Repellendus quia illum delectus modi animi.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 2.1ms | ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"   (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'izabella@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "izabella@example.org"], ["encrypted_password", "$2a$04$8uWVdAU5rAWqAra95eLTre/Gv1qR/a6kqMa.JhalM6RBUmkBLujlC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Itaque aut totam quia magnam in. Quidem voluptatum dolorem dolore nisi consequatur. Nisi ipsa quidem.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 41ms (Views: 35.9ms | ActiveRecord: 0.3ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 26], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["description", "Ut sequi quis. Dolorem nisi nesciunt similique rerum eius et soluta. Omnis quisquam odit dignissimos quo voluptatem."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Suscipit nam necessitatibus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eos-autem-9' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 25], ["blog_id", 1], ["body", "Ea dolorum ducimus dolore repellendus quia quasi. Hic et quam atque eius. Quis deleniti eos facere dolorem earum aliquam. Impedit voluptatibus quas dolores tenetur rerum quod ea. Perspiciatis sapiente incidunt. Commodi provident qui occaecati natus. Quia ipsum aut sit hic et."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["excerpt", "Iste harum."], ["published", true], ["slug", "eos-autem-9"], ["title", "Vero alias nisi sed unde aliquid aut."], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test9' OR lower(name) = 'rspec9' OR lower(name) = 'ruby9' OR lower(name) = '#rails9') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test9"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec9"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby9"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails9"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 28], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["description", "Nihil et et esse in. Magni qui voluptatibus rerum. Velit quis dolorem ducimus qui nulla rerum. Omnis quo non excepturi voluptas voluptate rerum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Maxime perspiciatis laborum excepturi qui ipsam totam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-molestiae-10' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 27], ["blog_id", 1], ["body", "Et quis qui. Consequuntur optio et. Nihil ut aut non minima. Deserunt blanditiis laborum voluptas at illo officiis consequatur. Et et distinctio dicta esse consectetur aut. Nobis aliquam mollitia ullam maxime commodi. Sequi ut modi possimus blanditiis occaecati aut et."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["excerpt", "Est mollitia eveniet qui quisquam consequatur."], ["published", true], ["slug", "et-molestiae-10"], ["title", "Exercitationem rerum unde non."], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test10' OR lower(name) = 'rspec10' OR lower(name) = 'ruby10' OR lower(name) = '#rails10') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test10"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec10"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby10"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails10"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 30], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["description", "Sit repellendus dolor ex ut. Et cum alias enim officia. Sed et animi dolores nihil consectetur et. Modi reiciendis eligendi perferendis velit quia cumque."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ut ad praesentium asperiores."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'itaque-totam-11' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 29], ["blog_id", 1], ["body", "At praesentium sapiente suscipit recusandae ipsum ipsa. Occaecati ut aliquid quo accusamus voluptatibus. Tenetur sed ratione id ab est omnis qui. Magnam non dolor quia id vel. Aut deserunt dolor doloribus modi dolorum et quibusdam. Iste voluptas in quae magni incidunt."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["excerpt", "Sint."], ["published", true], ["slug", "itaque-totam-11"], ["title", "Earum unde aut et."], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test11' OR lower(name) = 'rspec11' OR lower(name) = 'ruby11' OR lower(name) = '#rails11') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test11"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec11"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby11"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails11"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "coty_lemke@example.com"], ["author_name", "Ms. Audreanne Sawayn"], ["body", "Aut dicta corrupti et. Error sit dolore reiciendis assumenda sunt."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" ORDER BY id ASC  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 32], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["description", "Officia voluptatem incidunt vel recusandae omnis. Aut rem sequi saepe officiis. Odit non doloribus totam modi neque. Nostrum et deleniti reiciendis mollitia tenetur. Et et qui nihil ut veritatis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Deserunt iste."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sint-laboriosam-12' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 31], ["blog_id", 1], ["body", "Quasi est facere corporis sit quis. Et ea cupiditate nesciunt iste. Architecto ex rerum eveniet. Omnis eveniet corrupti ut odit vitae iusto. Architecto inventore sequi nulla ut dignissimos. Non nam quis tempora ea nihil facilis."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["excerpt", "Itaque et sequi dignissimos quia reprehenderit."], ["published", true], ["slug", "sint-laboriosam-12"], ["title", "Voluptas ducimus deleniti."], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test12' OR lower(name) = 'rspec12' OR lower(name) = 'ruby12' OR lower(name) = '#rails12') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test12"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec12"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby12"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails12"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 34], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["description", "Commodi ullam esse. Quia qui cum recusandae mollitia est est et. Illum explicabo est molestias blanditiis. Et at vel nihil aut deserunt."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Alias quia saepe provident molestias."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'accusamus-rem-13' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 33], ["blog_id", 1], ["body", "Ipsa aperiam labore possimus aut voluptas explicabo cupiditate. Sit sit pariatur earum hic consequatur in ut. Rerum saepe perspiciatis dicta maiores. Voluptas itaque ipsum cum et consequatur tempora. Ut odio minus sapiente eveniet. Maiores ipsum corporis et impedit dignissimos."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["excerpt", "Ea non voluptate quas qui exercitationem."], ["published", true], ["slug", "accusamus-rem-13"], ["title", "Non expedita dicta iusto et porro."], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test13' OR lower(name) = 'rspec13' OR lower(name) = 'ruby13' OR lower(name) = '#rails13') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby13"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails13"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "hoyt@example.net"], ["author_name", "Kayla Green"], ["body", "Voluptate voluptas illo. Consectetur architecto voluptas quas corporis non. Vel dolores rem deleniti asperiores deserunt recusandae."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "hershel_murray@example.org"], ["author_name", "Brooke Hauck I"], ["body", "Omnis quisquam odit dignissimos quo voluptatem."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "betty_braun@example.net"], ["author_name", "Chad Gorczany"], ["body", "Recusandae nam earum et accusamus. Dolor dolorem praesentium quod mollitia numquam quas."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "sheldon@example.net"], ["author_name", "Columbus Christiansen"], ["body", "Iste sit voluptatum unde veritatis. Quo reprehenderit adipisci laudantium odio."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "trenton@example.org"], ["author_name", "Alysa Goodwin Jr."], ["body", "Reiciendis qui eum impedit. Occaecati dolores sint deserunt. Est omnis optio nostrum iure."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "precious.weinat@example.net"], ["author_name", "Gabriella Reynolds"], ["body", "Commodi omnis suscipit. Ipsam fugit autem."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "vidal_hudson@example.com"], ["author_name", "Iliana Kovacek"], ["body", "Molestiae est molestiae adipisci et."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "zane@example.org"], ["author_name", "Miss Winona Prohaska"], ["body", "Voluptate qui aliquid. Magni illum fuga libero. Vero occaecati et molestiae omnis."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "joesph.rempel@example.net"], ["author_name", "Kamron Klein"], ["body", "Non iure illum laudantium ea voluptas. Qui non et ea nobis fugiat expedita corrupti. Fugit ad et saepe quis."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "milton_bogan@example.net"], ["author_name", "Mallie Considine"], ["body", "Et non et velit neque laborum natus id. Illo sint rerum dolor distinctio."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "price.mosciski@example.org"], ["author_name", "Elbert Halvorson"], ["body", "Est placeat velit facere earum voluptates corrupti. Hic aliquam inventore repellat accusamus voluptatibus tempore."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "deie@example.com"], ["author_name", "Mrs. Josh Reichert"], ["body", "Qui numquam deleniti doloremque aperiam vel. Dolorum beatae exercitationem."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "vance.ohara@example.org"], ["author_name", "Mrs. Lia Glover"], ["body", "Inventore sit dolor. Sit deserunt error est ut."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "kayley@example.com"], ["author_name", "Mrs. Thad Emmerich"], ["body", "Sint ducimus explicabo nesciunt optio deleniti fugit. Molestiae sunt delectus eos. Quia et nesciunt voluptas quis qui."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "bridgette@example.net"], ["author_name", "Billie Tremblay"], ["body", "Possimus hic voluptatem voluptas vero quidem ut a. Veniam qui ipsam accusamus consequuntur. Officiis expedita similique quidem sed mollitia omnis sunt."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments" WHERE "almanac_comments"."spam" = 't'  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 35], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["description", "Reiciendis et in non ea. Blanditiis quae ea quis tenetur dolore. Debitis nulla amet cupiditate voluptate et. Corrupti ut quia."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Modi dolor sit debitis explicabo."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sint-dolorem-14' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 36], ["blog_id", 1], ["body", "Sint sed nulla labore et numquam eum. Dolore occaecati alias corporis et consequatur unde aut. Qui qui amet. Tempore corporis rem dolor. Impedit deserunt temporibus corrupti qui."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["excerpt", "Et voluptatem asperiores."], ["published", true], ["slug", "sint-dolorem-14"], ["title", "Excepturi saepe recusandae magni."], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test14' OR lower(name) = 'rspec14' OR lower(name) = 'ruby14' OR lower(name) = '#rails14') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test14"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec14"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby14"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails14"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'iusto-quia-15' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 37], ["blog_id", 1], ["body", "Sed quis vitae itaque harum totam. Quas ea ut aut exercitationem aliquam. Soluta ipsum quae blanditiis deserunt omnis esse impedit. Ipsam voluptas quas dignissimos in dolorem quo tempore. Eos facere aperiam laboriosam quia voluptatem."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["excerpt", "Rerum dolores."], ["published", true], ["slug", "iusto-quia-15"], ["title", "Non rerum aut quo tempora."], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test15' OR lower(name) = 'rspec15' OR lower(name) = 'ruby15' OR lower(name) = '#rails15') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test15' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test15"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec15"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby15"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails15"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 39], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["description", "Labore autem aut aut nihil dolorem laboriosam et. Est ipsam nulla omnis quia. Error autem et. Nihil fugit iusto rem eius praesentium repudiandae. Qui neque nam deserunt."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolorem assumenda."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nobis-ea-16' LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 41], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["description", "Sint aut aut. Omnis amet cumque dolorem quia porro occaecati et. Ratione consectetur voluptas totam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolores voluptatem incidunt aliquam iste amet."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 43], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["description", "Est provident id ut. Repellendus suscipit quae. Similique cumque aliquid error cupiditate totam sunt."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Magnam vel omnis aut quis libero debitis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (38.8ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'omnis-id-17' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 45], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["description", "Velit possimus facere dolores ipsum amet. Consequuntur qui consectetur enim. Explicabo consequatur omnis amet velit. Quia error vero sed laboriosam voluptatem vitae sit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ea ut laborum dolorem dolores."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'beatae-et-18' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'totam-velit-19' LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 48], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["description", "Magnam excepturi omnis beatae suscipit aliquam. Non amet exercitationem rem sint. In fugiat quod."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Qui ullam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'officiis-voluptatem-20' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 50], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["description", "Nisi tempore dolorem ut quia in reprehenderit. Porro excepturi impedit facilis. Iure et maxime nulla repellendus. Sint ex voluptas harum cum tempora. Est unde vitae doloremque aspernatur nihil culpa id."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aliquid deserunt facilis rerum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'repellat-velit-21' LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 53], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["description", "A non incidunt modi animi et commodi neque. Ipsa iste quaerat voluptatibus ipsam. Ut dolor voluptatem est laboriosam aut. Omnis iusto et maiores qui ea repudiandae incidunt."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Accusantium necessitatibus enim minus modi repellat totam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'necessitatibus-voluptas-22' LIMIT 1  (0.3ms) rollback transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 55], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["description", "Nihil consequatur dolorem. Molestiae atque dolorem. Nihil consequatur explicabo debitis saepe nemo rerum consequatur. Et in beatae illum quia."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Assumenda atque labore dolores."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'modi-rerum-23' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 57], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["description", "Quisquam culpa aliquam temporibus sit. Nobis ipsum id consequatur cum fugit sapiente. Quis nobis illum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Adipisci voluptas ex mollitia."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'exercitationem-placeat-24' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 56], ["blog_id", 1], ["body", "Rem earum sed qui omnis repellat. Explicabo quis cum rem quam. Voluptatem porro accusantium repudiandae repellendus. Eligendi necessitatibus cum dolor. Nisi totam aut ipsa libero. Aperiam ut magni. Ut mollitia quos non accusamus vero."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["excerpt", "Sunt iure et et."], ["published", true], ["slug", "exercitationem-placeat-24"], ["title", "Molestiae officiis qui."], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test26' OR lower(name) = 'rspec26' OR lower(name) = 'ruby26' OR lower(name) = '#rails26') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test26"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails26"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 58], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["description", "Qui quod omnis et et vel molestiae ipsam. Ut beatae vel illum ipsum. Optio expedita eum aliquid facere neque laborum. Adipisci qui cum enim consectetur. Temporibus dolores dicta sunt unde aliquam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dicta tempore non aut."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quia-delectus-25' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 59], ["blog_id", 1], ["body", "Recusandae quaerat corrupti culpa et sapiente aut alias. Accusamus accusantium quia possimus. Perferendis nihil aliquam quae recusandae. Corrupti dolorem expedita nisi ab neque fugiat. Illum possimus et odit ratione."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["excerpt", "Omnis hic."], ["published", true], ["slug", "quia-delectus-25"], ["title", "Corporis quia autem."], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test27' OR lower(name) = 'rspec27' OR lower(name) = 'ruby27' OR lower(name) = '#rails27') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails27"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.2ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-ducimus-26' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 60], ["blog_id", 1], ["body", "Et voluptas aut et ea. Quis sed ut beatae molestiae dolore cupiditate tempore. Autem nemo rem. Delectus natus atque quaerat. Ut rerum eius tempore nobis blanditiis quis. Nemo qui dolores. Cum earum sit nisi voluptatem."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["excerpt", "Deleniti et reiciendis."], ["published", true], ["slug", "et-ducimus-26"], ["title", "Quidem autem recusandae ullam."], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test28' OR lower(name) = 'rspec28' OR lower(name) = 'ruby28' OR lower(name) = '#rails28') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test28' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test28"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec28"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby28"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails28"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nihil-nobis-27' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 61], ["blog_id", 1], ["body", "Molestiae nesciunt eius distinctio eos. Voluptatem laboriosam odio doloribus ut. Reiciendis possimus aut veritatis pariatur placeat consequatur. Sequi iusto neque ratione. Et dicta aspernatur illo dolores perspiciatis. Eos officiis in assumenda."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["excerpt", "Ex vel facilis ipsam error."], ["published", true], ["slug", "nihil-nobis-27"], ["title", "Magni vitae iure dolores vel deleniti."], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test29' OR lower(name) = 'rspec29' OR lower(name) = 'ruby29' OR lower(name) = '#rails29') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails29"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'doloribus-quas-28' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 62], ["blog_id", 1], ["body", "Esse odit eos natus ut impedit voluptatem voluptates. Odit temporibus voluptatum. In est magnam earum enim voluptas. Voluptatem deleniti quia assumenda ad. Modi sed impedit quia eaque qui. Adipisci nostrum atque. Eos est et soluta eos delectus aliquam enim."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["excerpt", "Et."], ["published", true], ["slug", "doloribus-quas-28"], ["title", "Cum velit corrupti debitis adipisci ut labore."], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test30' OR lower(name) = 'rspec30' OR lower(name) = 'ruby30' OR lower(name) = '#rails30') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test30' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails30"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'adipisci-tempore-29' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 63], ["blog_id", 1], ["body", "Corporis iure repellat est et odio amet et. Odio doloribus molestias perspiciatis rerum iste. Enim id ut rerum omnis. Esse labore nulla. Aspernatur eaque voluptatibus sit. Exercitationem est maiores ut. Qui voluptatum est quo totam aut est consequuntur."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["excerpt", "Omnis natus aperiam amet nemo cum."], ["published", true], ["slug", "adipisci-tempore-29"], ["title", "Quia qui esse voluptatibus repellat est suscipit facilis."], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test31' OR lower(name) = 'rspec31' OR lower(name) = 'ruby31' OR lower(name) = '#rails31') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails31"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'impedit-perferendis-30' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 64], ["blog_id", 1], ["body", "Illo qui et similique. Qui est ullam voluptas ut ea dolores. Perspiciatis ratione laborum aut adipisci quis animi quis. Id et necessitatibus voluptatem laboriosam blanditiis alias eos. Voluptatum rerum aut quia quo. Laborum ut et assumenda. Quasi odit omnis cum nam."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["excerpt", "Inventore culpa ut voluptas dolores."], ["published", true], ["slug", "impedit-perferendis-30"], ["title", "Ut veniam corporis tempore."], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test32' OR lower(name) = 'rspec32' OR lower(name) = 'ruby32' OR lower(name) = '#rails32') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails32"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'perferendis-minus-31' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 65], ["blog_id", 1], ["body", "Molestiae maiores est sed minus ipsa nam totam. Ut itaque voluptatem quae. Cum animi culpa quis. Numquam doloribus temporibus impedit enim. Rerum aut et doloribus dolor impedit sint. Ut aperiam ducimus sit provident amet ex cumque. Nisi vero est ullam eveniet voluptatem ea."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["excerpt", "Est corporis voluptate."], ["published", true], ["slug", "perferendis-minus-31"], ["title", "Sed quod quis rerum reprehenderit praesentium."], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test33' OR lower(name) = 'rspec33' OR lower(name) = 'ruby33' OR lower(name) = '#rails33') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test33"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec33"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby33"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails33"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'similique-sit-32' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 66], ["blog_id", 1], ["body", "Est doloribus enim ad. Voluptates doloremque repellendus. Quia qui velit tempora ut soluta fuga. Optio blanditiis dolor neque. Voluptates corrupti incidunt dolore."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["excerpt", "Ex sint quaerat animi quis molestiae."], ["published", true], ["slug", "similique-sit-32"], ["title", "Blanditiis ullam cupiditate inventore."], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test34' OR lower(name) = 'rspec34' OR lower(name) = 'ruby34' OR lower(name) = '#rails34') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails34"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eos-fugit-33' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 67], ["blog_id", 1], ["body", "Ipsam nulla at quia ipsum aut. Enim et nihil qui voluptate blanditiis dicta cumque. Laboriosam illo doloremque reiciendis pariatur et. Quasi sed voluptas nobis. Et accusantium quisquam aliquid quam. Assumenda asperiores quas sed. Aut et unde aspernatur minima voluptatibus."], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["excerpt", "Voluptates facilis ut dolorum."], ["published", true], ["slug", "eos-fugit-33"], ["title", "Aliquam laboriosam qui ut maxime perferendis."], ["updated_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test35' OR lower(name) = 'rspec35' OR lower(name) = 'ruby35' OR lower(name) = '#rails35') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test35' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails35"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:04 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consequuntur-eaque-34' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 68], ["blog_id", 1], ["body", "Iste sit blanditiis. Beatae in officiis. Aut consequatur hic. Officia quia eveniet cumque. Vel saepe et velit temporibus rerum. Porro voluptas earum neque atque laborum."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Iste qui voluptate."], ["published", true], ["slug", "consequuntur-eaque-34"], ["title", "Quidem id vero voluptas."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test36' OR lower(name) = 'rspec36' OR lower(name) = 'ruby36' OR lower(name) = '#rails36') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test36' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test36"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec36"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby36"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails36"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'cumque-quia-35' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 69], ["blog_id", 1], ["body", "Ea ab omnis est assumenda sed rerum. Aperiam ex cum tempora velit. A molestiae asperiores inventore neque quia. Sit praesentium officia qui in est ullam inventore. Magnam inventore deserunt asperiores ipsa fuga totam nesciunt. Et fugit iusto id maiores quis doloribus."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Pariatur voluptates labore tempora cupiditate quaerat."], ["published", true], ["slug", "cumque-quia-35"], ["title", "Itaque laboriosam amet dolor non nam ut qui."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-veritatis-36' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 70], ["blog_id", 1], ["body", "Eaque odit minus corrupti illum provident. Voluptatum aspernatur libero sint veniam ut. Voluptatem accusamus omnis ut dolores. Vero molestias quisquam fugiat in et. Qui ea unde ea et nulla. Quia qui ipsa voluptatibus ducimus aliquam. Enim explicabo laudantium consectetur et quae voluptatem et."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "In eum."], ["published", true], ["slug", "qui-veritatis-36"], ["title", "Rerum nesciunt accusantium."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_2c51ae6 ON posts_taggings_2c51ae6.taggable_id = almanac_posts.id AND posts_taggings_2c51ae6.taggable_type = 'Almanac::Post' AND posts_taggings_2c51ae6.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 71], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["description", "Sit quia nesciunt molestias enim ut quia ut. Quibusdam corrupti sed voluptatem nemo non est. Mollitia debitis unde amet est nihil commodi ex."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Amet eos sequi reprehenderit iusto deserunt optio."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'inventore-id-37' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 72], ["blog_id", 1], ["body", "Voluptas vel sint aut praesentium nam error quidem. Quis voluptas odit et maxime molestiae facilis. Voluptates quis eveniet sed est quae libero vitae. Consequatur optio quos voluptas ipsam dolorum voluptates autem. Deleniti libero in at porro aliquam aut eius. Amet incidunt est."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Ea quae in architecto."], ["published", true], ["slug", "inventore-id-37"], ["title", "At qui aut ullam vero veniam quia rem."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test37' OR lower(name) = 'rspec37' OR lower(name) = 'ruby37' OR lower(name) = '#rails37') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test37"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec37"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby37"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails37"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consequatur-sed-38' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 73], ["blog_id", 1], ["body", "Sunt iure et et eos ipsam. Ut facilis quo non neque. Facere voluptate eius. Voluptatem cum quos aut magni. Eligendi necessitatibus cum dolor. Nisi totam aut ipsa libero. Aperiam ut magni."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Nesciunt est debitis."], ["published", true], ["slug", "consequatur-sed-38"], ["title", "Est aliquid iste quae veritatis esse facilis."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test38' OR lower(name) = 'rspec38' OR lower(name) = 'ruby38' OR lower(name) = '#rails38') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test38' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails38"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'facere-beatae-39' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 74], ["blog_id", 1], ["body", "Veritatis quia temporibus et minima quia ratione. Praesentium aliquid commodi. Autem itaque quidem dolorem nostrum dicta omnis. Deserunt recusandae sapiente aut dolores non ipsam. Excepturi et quasi voluptatibus nulla et. Animi cumque autem nesciunt recusandae alias id aut. Aperiam dolor itaque quidem non non delectus asperiores."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Et quis."], ["published", true], ["slug", "facere-beatae-39"], ["title", "Ut mollitia quos non accusamus vero."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test39' OR lower(name) = 'rspec39' OR lower(name) = 'ruby39' OR lower(name) = '#rails39') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test39"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec39"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby39"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails39"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptatibus-autem-40' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 75], ["blog_id", 1], ["body", "Et rerum unde quos. Error fugit veniam natus sed. Laboriosam ipsa iure facere eos tenetur eaque nisi. Nam eaque numquam qui corrupti laborum esse labore. Harum unde sed ut quia."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Sit."], ["published", true], ["slug", "voluptatibus-autem-40"], ["title", "Rem ut commodi."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test40' OR lower(name) = 'rspec40' OR lower(name) = 'ruby40' OR lower(name) = '#rails40') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test40"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec40"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby40"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails40"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'iste-excepturi-41' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 76], ["blog_id", 1], ["body", "Soluta non non aut. Impedit iusto ullam facere architecto. Praesentium consequatur sed sit. Aliquam et architecto ut. Iure libero voluptatem."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Officiis ea velit."], ["published", true], ["slug", "iste-excepturi-41"], ["title", "Ratione voluptate atque non et qui."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test41' OR lower(name) = 'rspec41' OR lower(name) = 'ruby41' OR lower(name) = '#rails41') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test41"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec41"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby41"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails41"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sint-cum-42' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 77], ["blog_id", 1], ["body", "Deleniti totam dignissimos voluptas commodi. Aut est iure. Et voluptatem voluptatum aut. Rerum non ea rerum sequi enim eum. Explicabo nostrum reprehenderit accusamus. Porro illum culpa autem est dolores nihil reprehenderit. Est ad perspiciatis possimus voluptatum inventore atque."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Ea sapiente quo sint."], ["published", true], ["slug", "sint-cum-42"], ["title", "Mollitia ullam incidunt."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test42' OR lower(name) = 'rspec42' OR lower(name) = 'ruby42' OR lower(name) = '#rails42') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails42"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'id-molestiae-43' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 78], ["blog_id", 1], ["body", "Possimus aut accusantium est distinctio assumenda quas error. Enim impedit quidem quo dolorem. Quo ut amet reiciendis. Velit doloribus tempora eveniet laudantium maxime quo aperiam. Et aliquam nesciunt laboriosam veniam occaecati. Ipsum et facere aut maxime praesentium. Voluptatem veniam est."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Doloribus ut totam dolorum."], ["published", true], ["slug", "id-molestiae-43"], ["title", "Voluptas quod nesciunt odio eum neque autem vitae."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test43' OR lower(name) = 'rspec43' OR lower(name) = 'ruby43' OR lower(name) = '#rails43') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test43"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec43"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby43"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails43"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'magnam-provident-44' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 79], ["blog_id", 1], ["body", "Maxime porro vel impedit quos temporibus numquam corrupti. Labore vitae nulla alias ut odio perspiciatis voluptatem. Odit at natus nulla quae qui. A laboriosam voluptate. Aut laboriosam est. Accusamus sint cum qui. Quae illum amet ut fuga."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Officiis."], ["published", true], ["slug", "magnam-provident-44"], ["title", "Incidunt ea dolor laborum."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test44' OR lower(name) = 'rspec44' OR lower(name) = 'ruby44' OR lower(name) = '#rails44') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test44"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec44"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby44"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails44"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'assumenda-est-45' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 80], ["blog_id", 1], ["body", "Et optio esse dolorum. Labore eligendi sed. Nesciunt illo occaecati architecto. Aliquid modi perferendis sint cumque expedita occaecati doloremque. Repellat qui aut."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Culpa amet asperiores."], ["published", true], ["slug", "assumenda-est-45"], ["title", "Expedita eaque aut maxime ad laboriosam alias cupiditate."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test45' OR lower(name) = 'rspec45' OR lower(name) = 'ruby45' OR lower(name) = '#rails45') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test45"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec45"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby45"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails45"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'porro-vel-46' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 81], ["blog_id", 1], ["body", "Perferendis adipisci culpa quo qui facere. Eveniet rerum soluta modi. Architecto quod qui nulla quia quaerat. Voluptas earum occaecati minus culpa est dolores. Tenetur eos saepe dolores quia quo beatae doloremque. Est amet et in enim est repudiandae. Ut modi dolore sit."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Laboriosam rerum."], ["published", true], ["slug", "porro-vel-46"], ["title", "Qui ratione numquam sit libero."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test46' OR lower(name) = 'rspec46' OR lower(name) = 'ruby46' OR lower(name) = '#rails46') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test46' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails46"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'totam-sunt-47' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 82], ["blog_id", 1], ["body", "Ut eos est. Amet ut omnis magnam odit. Odio fugiat eum corporis et deserunt dolor dignissimos. Sed quisquam expedita. Est dignissimos sed modi ullam laudantium molestiae perferendis. Eum excepturi at eos ut consequuntur minus. Earum tempore quis."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Perspiciatis atque enim non."], ["published", false], ["slug", "totam-sunt-47"], ["title", "Sequi et animi tempore est dolores laborum fugit."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test47' OR lower(name) = 'rspec47' OR lower(name) = 'ruby47' OR lower(name) = '#rails47') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails47"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 42 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 42], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 43 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 43], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 44 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 44], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 45 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 45], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-et-48' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 83], ["blog_id", 1], ["body", "Corporis enim amet aspernatur excepturi aperiam quis eveniet. Error ipsam magni. Accusamus minima non et et expedita vero ea. Aliquam incidunt earum. Cum enim hic."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Ratione sed inventore."], ["published", false], ["slug", "et-et-48"], ["title", "Sed id culpa corporis adipisci sunt maxime."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test48' OR lower(name) = 'rspec48' OR lower(name) = 'ruby48' OR lower(name) = '#rails48') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails48"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 46 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 46], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 47 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 47], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 48 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 48], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 49 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 49], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_3fde024 ON posts_taggings_3fde024.taggable_id = almanac_posts.id AND posts_taggings_3fde024.taggable_type = 'Almanac::Post' AND posts_taggings_3fde024.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 84], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["description", "Omnis velit tempore dolores illum. Eveniet culpa non praesentium inventore. Optio expedita eum aliquid facere neque laborum. Adipisci qui cum enim consectetur."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Non expedita dicta iusto et."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ullam-eum-49' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 85], ["blog_id", 1], ["body", "A velit rerum. Recusandae quaerat corrupti culpa et sapiente aut alias. Accusamus accusantium quia possimus. Perferendis nihil aliquam quae recusandae. Corrupti dolorem expedita nisi ab neque fugiat. Illum possimus et odit ratione."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Quis."], ["published", true], ["slug", "ullam-eum-49"], ["title", "Temporibus dolores dicta sunt unde aliquam."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test49' OR lower(name) = 'rspec49' OR lower(name) = 'ruby49' OR lower(name) = '#rails49') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test49"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec49"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby49"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails49"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-ducimus-50' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 86], ["blog_id", 1], ["body", "Et voluptas aut et ea. Quis sed ut beatae molestiae dolore cupiditate tempore. Autem nemo rem. Delectus natus atque quaerat. Ut rerum eius tempore nobis blanditiis quis. Nemo qui dolores. Cum earum sit nisi voluptatem."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Deleniti et reiciendis."], ["published", true], ["slug", "et-ducimus-50"], ["title", "Quidem autem recusandae ullam."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test50' OR lower(name) = 'rspec50' OR lower(name) = 'ruby50' OR lower(name) = '#rails50') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test50' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails50"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nihil-nobis-51' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 87], ["blog_id", 1], ["body", "Molestiae nesciunt eius distinctio eos. Voluptatem laboriosam odio doloribus ut. Reiciendis possimus aut veritatis pariatur placeat consequatur. Sequi iusto neque ratione. Et dicta aspernatur illo dolores perspiciatis. Eos officiis in assumenda."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Ex vel facilis ipsam error."], ["published", true], ["slug", "nihil-nobis-51"], ["title", "Magni vitae iure dolores vel deleniti."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test51' OR lower(name) = 'rspec51' OR lower(name) = 'ruby51' OR lower(name) = '#rails51') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails51"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'doloribus-quas-52' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 88], ["blog_id", 1], ["body", "Esse odit eos natus ut impedit voluptatem voluptates. Odit temporibus voluptatum. In est magnam earum enim voluptas. Voluptatem deleniti quia assumenda ad. Modi sed impedit quia eaque qui. Adipisci nostrum atque. Eos est et soluta eos delectus aliquam enim."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Et."], ["published", false], ["slug", "doloribus-quas-52"], ["title", "Cum velit corrupti debitis adipisci ut labore."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test52' OR lower(name) = 'rspec52' OR lower(name) = 'ruby52' OR lower(name) = '#rails52') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails52"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'adipisci-tempore-53' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 89], ["blog_id", 1], ["body", "Corporis iure repellat est et odio amet et. Odio doloribus molestias perspiciatis rerum iste. Enim id ut rerum omnis. Esse labore nulla. Aspernatur eaque voluptatibus sit. Exercitationem est maiores ut. Qui voluptatum est quo totam aut est consequuntur."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Omnis natus aperiam amet nemo cum."], ["published", false], ["slug", "adipisci-tempore-53"], ["title", "Quia qui esse voluptatibus repellat est suscipit facilis."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test53' OR lower(name) = 'rspec53' OR lower(name) = 'ruby53' OR lower(name) = '#rails53') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails53"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'impedit-perferendis-54' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 90], ["blog_id", 1], ["body", "Illo qui et similique. Qui est ullam voluptas ut ea dolores. Perspiciatis ratione laborum aut adipisci quis animi quis. Id et necessitatibus voluptatem laboriosam blanditiis alias eos. Voluptatum rerum aut quia quo. Laborum ut et assumenda. Quasi odit omnis cum nam."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Inventore culpa ut voluptas dolores."], ["published", false], ["slug", "impedit-perferendis-54"], ["title", "Ut veniam corporis tempore."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test54' OR lower(name) = 'rspec54' OR lower(name) = 'ruby54' OR lower(name) = '#rails54') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails54"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f'  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 91], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["description", "Qui quod omnis et et vel molestiae ipsam. Ut beatae vel illum ipsum. Optio expedita eum aliquid facere neque laborum. Adipisci qui cum enim consectetur. Temporibus dolores dicta sunt unde aliquam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dicta tempore non aut."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quia-delectus-55' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 92], ["blog_id", 1], ["body", "Recusandae quaerat corrupti culpa et sapiente aut alias. Accusamus accusantium quia possimus. Perferendis nihil aliquam quae recusandae. Corrupti dolorem expedita nisi ab neque fugiat. Illum possimus et odit ratione."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Omnis hic."], ["published", true], ["slug", "quia-delectus-55"], ["title", "Corporis quia autem."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test55' OR lower(name) = 'rspec55' OR lower(name) = 'ruby55' OR lower(name) = '#rails55') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby55"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails55"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-ducimus-56' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 93], ["blog_id", 1], ["body", "Et voluptas aut et ea. Quis sed ut beatae molestiae dolore cupiditate tempore. Autem nemo rem. Delectus natus atque quaerat. Ut rerum eius tempore nobis blanditiis quis. Nemo qui dolores. Cum earum sit nisi voluptatem."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Deleniti et reiciendis."], ["published", true], ["slug", "et-ducimus-56"], ["title", "Quidem autem recusandae ullam."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test56' OR lower(name) = 'rspec56' OR lower(name) = 'ruby56' OR lower(name) = '#rails56') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test56' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails56"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nihil-nobis-57' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 94], ["blog_id", 1], ["body", "Molestiae nesciunt eius distinctio eos. Voluptatem laboriosam odio doloribus ut. Reiciendis possimus aut veritatis pariatur placeat consequatur. Sequi iusto neque ratione. Et dicta aspernatur illo dolores perspiciatis. Eos officiis in assumenda."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Ex vel facilis ipsam error."], ["published", true], ["slug", "nihil-nobis-57"], ["title", "Magni vitae iure dolores vel deleniti."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test57' OR lower(name) = 'rspec57' OR lower(name) = 'ruby57' OR lower(name) = '#rails57') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails57"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'doloribus-quas-58' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 95], ["blog_id", 1], ["body", "Esse odit eos natus ut impedit voluptatem voluptates. Odit temporibus voluptatum. In est magnam earum enim voluptas. Voluptatem deleniti quia assumenda ad. Modi sed impedit quia eaque qui. Adipisci nostrum atque. Eos est et soluta eos delectus aliquam enim."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Et."], ["published", true], ["slug", "doloribus-quas-58"], ["title", "Cum velit corrupti debitis adipisci ut labore."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test58' OR lower(name) = 'rspec58' OR lower(name) = 'ruby58' OR lower(name) = '#rails58') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails58"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'adipisci-tempore-59' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 96], ["blog_id", 1], ["body", "Corporis iure repellat est et odio amet et. Odio doloribus molestias perspiciatis rerum iste. Enim id ut rerum omnis. Esse labore nulla. Aspernatur eaque voluptatibus sit. Exercitationem est maiores ut. Qui voluptatum est quo totam aut est consequuntur."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Omnis natus aperiam amet nemo cum."], ["published", false], ["slug", "adipisci-tempore-59"], ["title", "Quia qui esse voluptatibus repellat est suscipit facilis."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test59' OR lower(name) = 'rspec59' OR lower(name) = 'ruby59' OR lower(name) = '#rails59') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails59"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'impedit-perferendis-60' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 97], ["blog_id", 1], ["body", "Illo qui et similique. Qui est ullam voluptas ut ea dolores. Perspiciatis ratione laborum aut adipisci quis animi quis. Id et necessitatibus voluptatem laboriosam blanditiis alias eos. Voluptatum rerum aut quia quo. Laborum ut et assumenda. Quasi odit omnis cum nam."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Inventore culpa ut voluptas dolores."], ["published", false], ["slug", "impedit-perferendis-60"], ["title", "Ut veniam corporis tempore."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test60' OR lower(name) = 'rspec60' OR lower(name) = 'ruby60' OR lower(name) = '#rails60') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails60"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'perferendis-minus-61' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 98], ["blog_id", 1], ["body", "Molestiae maiores est sed minus ipsa nam totam. Ut itaque voluptatem quae. Cum animi culpa quis. Numquam doloribus temporibus impedit enim. Rerum aut et doloribus dolor impedit sint. Ut aperiam ducimus sit provident amet ex cumque. Nisi vero est ullam eveniet voluptatem ea."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Est corporis voluptate."], ["published", false], ["slug", "perferendis-minus-61"], ["title", "Sed quod quis rerum reprehenderit praesentium."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test61' OR lower(name) = 'rspec61' OR lower(name) = 'ruby61' OR lower(name) = '#rails61') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails61"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 't'  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'liza_schneider@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "liza_schneider@example.com"], ["encrypted_password", "$2a$04$bCbb8hosi9aQuLuicn/N8eRi22sXbGnKxvEMyeEm9MsVM5ntogLz."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 99], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["description", "Ut ut quidem dignissimos et sapiente laudantium. Enim accusamus porro fuga molestias ea ratione. Sint dignissimos reiciendis consequatur quaerat dolores excepturi sit. Dolorem ipsam corporis alias dolor illum culpa earum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Necessitatibus quia sed libero quis est ullam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'esse-quis-62' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 100], ["blog_id", 1], ["body", "Dignissimos rerum dicta consectetur totam velit. Ad et rem nam cum repudiandae. Qui nulla et enim magni sapiente. Numquam sit quasi sint. Sapiente nihil numquam qui. Laborum soluta aut ut voluptas. Autem eaque nulla quaerat repellat ut."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Sed neque non vel odio."], ["published", true], ["slug", "esse-quis-62"], ["title", "Voluptatem veniam dolorum fugiat dignissimos repudiandae."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test62' OR lower(name) = 'rspec62' OR lower(name) = 'ruby62' OR lower(name) = '#rails62') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails62"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."post_id" = 1 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5) SQL (0.2ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 33ms (ActiveRecord: 1.3ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ford@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ford@example.org"], ["encrypted_password", "$2a$04$rDxfBUdzxBK/FmM80jdAqu7.OFjX0DJInQSgSeWpBilm4OqMcUHuu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 101], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["description", "Nihil consequatur animi et. Sit minus repellendus. Recusandae corrupti possimus magnam omnis error sed molestiae."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ad et fuga similique."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'necessitatibus-repudiandae-63' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 102], ["blog_id", 1], ["body", "Beatae numquam repellendus consequatur atque. Dolor cupiditate ipsa. Non maiores deserunt dolorem quisquam illum. Soluta est reprehenderit. Et nostrum eveniet quibusdam a."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Porro."], ["published", true], ["slug", "necessitatibus-repudiandae-63"], ["title", "Nulla veniam qui iure."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test63' OR lower(name) = 'rspec63' OR lower(name) = 'ruby63' OR lower(name) = '#rails63') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails63"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."post_id" = 1 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 11ms (ActiveRecord: 0.9ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'liza_schneider@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "liza_schneider@example.com"], ["encrypted_password", "$2a$04$4QcBnRdzw.23nXTfem9C/u.7Hx0f2XRpWsfW9Ju.isGheyNDRjiVO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 103], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["description", "Ut ut quidem dignissimos et sapiente laudantium. Enim accusamus porro fuga molestias ea ratione. Sint dignissimos reiciendis consequatur quaerat dolores excepturi sit. Dolorem ipsam corporis alias dolor illum culpa earum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Necessitatibus quia sed libero quis est ullam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'esse-quis-64' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 104], ["blog_id", 1], ["body", "Dignissimos rerum dicta consectetur totam velit. Ad et rem nam cum repudiandae. Qui nulla et enim magni sapiente. Numquam sit quasi sint. Sapiente nihil numquam qui. Laborum soluta aut ut voluptas. Autem eaque nulla quaerat repellat ut."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Sed neque non vel odio."], ["published", true], ["slug", "esse-quis-64"], ["title", "Voluptatem veniam dolorum fugiat dignissimos repudiandae."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test64' OR lower(name) = 'rspec64' OR lower(name) = 'ruby64' OR lower(name) = '#rails64') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby64"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails64"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quo-harum-65' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 105], ["blog_id", 1], ["body", "Facilis porro voluptatem. Voluptas harum non odit pariatur. Corrupti laborum non minima. Voluptatem aut qui rerum culpa laborum iste. Quas sequi qui."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Optio molestias."], ["published", true], ["slug", "quo-harum-65"], ["title", "Quia quod maiores dignissimos cum veritatis corrupti qui."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test65' OR lower(name) = 'rspec65' OR lower(name) = 'ruby65' OR lower(name) = '#rails65') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test65' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails65"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'laboriosam-repellat-66' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 106], ["blog_id", 1], ["body", "Vel modi hic magnam sit voluptatem. Optio esse ea aliquam quia reiciendis tenetur ducimus. Et occaecati in in nihil enim. Beatae deleniti eveniet soluta quis vero quia ipsa. Quisquam laborum esse nobis dolore. Et reiciendis voluptatem consequatur saepe."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Sed ullam sed."], ["published", true], ["slug", "laboriosam-repellat-66"], ["title", "Aut saepe libero consequatur nobis totam et molestiae."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test66' OR lower(name) = 'rspec66' OR lower(name) = 'ruby66' OR lower(name) = '#rails66') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test66"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec66"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails66"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'at-voluptatum-67' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 107], ["blog_id", 1], ["body", "Laboriosam et ipsum molestiae voluptates saepe quidem. Laudantium aperiam quisquam qui ea ad. Quis et aut. Vitae maiores ut nulla voluptatem iste qui quis. Eius repellendus reprehenderit. Sequi id impedit quae illum sit est velit. Dolorum sint qui ullam temporibus ea quisquam porro."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Magnam."], ["published", true], ["slug", "at-voluptatum-67"], ["title", "Aspernatur possimus commodi enim dolor quasi nesciunt aliquid."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test67' OR lower(name) = 'rspec67' OR lower(name) = 'ruby67' OR lower(name) = '#rails67') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails67"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'cum-aut-68' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 108], ["blog_id", 1], ["body", "Cupiditate dolores rerum. Id et sed ipsa et accusantium quidem. Vitae aperiam quia ut omnis ut. Velit voluptatem voluptatibus recusandae velit. Unde occaecati aperiam rerum sit ducimus adipisci ullam. Nulla et cumque ullam quae est."], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["excerpt", "Vel omnis."], ["published", true], ["slug", "cum-aut-68"], ["title", "Soluta dolorem dignissimos rem reiciendis pariatur."], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test68' OR lower(name) = 'rspec68' OR lower(name) = 'ruby68' OR lower(name) = '#rails68') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails68"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Parameters: {"tag_name"=>"common"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common') Completed 200 OK in 9ms (Views: 3.0ms | ActiveRecord: 0.2ms) Almanac::Post Load (0.3ms) SELECT "almanac_posts".* FROM "almanac_posts" JOIN taggings posts_taggings_1bc1a6d ON posts_taggings_1bc1a6d.taggable_id = almanac_posts.id AND posts_taggings_1bc1a6d.taggable_type = 'Almanac::Post' AND posts_taggings_1bc1a6d.tag_id = 1 WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ed_thompson@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ed_thompson@example.net"], ["encrypted_password", "$2a$04$LUbaDmfs/cWI0WMcO.8X5u6viIWkxNLuxoT5Sw3jMcht.OLSA.LfC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 109], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["description", "Quia voluptatem est aut at nesciunt aperiam. Id modi saepe commodi voluptatem tenetur. Voluptatem ut quas ut itaque alias vel ipsa. Impedit libero voluptas eaque."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolor eum aut iure autem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 6ms (Views: 1.4ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'liza_schneider@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "liza_schneider@example.com"], ["encrypted_password", "$2a$04$VFTp0DF5HKAvZBKKV9aPK.1GsdGd267KLyD4BnF/NipmEMeqhsBCu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 110], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00], ["description", "Ut ut quidem dignissimos et sapiente laudantium. Enim accusamus porro fuga molestias ea ratione. Sint dignissimos reiciendis consequatur quaerat dolores excepturi sit. Dolorem ipsam corporis alias dolor illum culpa earum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Necessitatibus quia sed libero quis est ullam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:05 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_posts" Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Voluptatem veniam dolorum fugiat dignissimos repudiandae.", "slug"=>"esse-quis-69", "excerpt"=>"Sed neque non vel odio.", "body"=>"Dignissimos rerum dicta consectetur totam velit. Ad et rem nam cum repudiandae. Qui nulla et enim magni sapiente. Numquam sit quasi sint. Sapiente nihil numquam qui. Laborum soluta aut ut voluptas. Autem eaque nulla quaerat repellat ut.", "published"=>true, "tag_list"=>"common,test69,rspec69,ruby69,#rails69", "author_id"=>"111", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'esse-quis-69' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Dignissimos rerum dicta consectetur totam velit. Ad et rem nam cum repudiandae. Qui nulla et enim magni sapiente. Numquam sit quasi sint. Sapiente nihil numquam qui. Laborum soluta aut ut voluptas. Autem eaque nulla quaerat repellat ut."], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["excerpt", "Sed neque non vel odio."], ["published", true], ["slug", "esse-quis-69"], ["title", "Voluptatem veniam dolorum fugiat dignissimos repudiandae."], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test69' OR lower(name) = 'rspec69' OR lower(name) = 'ruby69' OR lower(name) = '#rails69') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails69"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 28ms (ActiveRecord: 2.4ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ford@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ford@example.org"], ["encrypted_password", "$2a$04$A6eEuK3rsjneuwqF.xFYZuA93QFpfUHPP1jjdjPwwjMWiMd1N2CtO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 112], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["description", "Nihil consequatur animi et. Sit minus repellendus. Recusandae corrupti possimus magnam omnis error sed molestiae."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ad et fuga similique."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Nulla veniam qui iure.", "slug"=>"necessitatibus-repudiandae-70", "excerpt"=>"Porro.", "body"=>"Beatae numquam repellendus consequatur atque. Dolor cupiditate ipsa. Non maiores deserunt dolorem quisquam illum. Soluta est reprehenderit. Et nostrum eveniet quibusdam a.", "published"=>true, "tag_list"=>"common,test70,rspec70,ruby70,#rails70", "author_id"=>"113", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'necessitatibus-repudiandae-70' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Beatae numquam repellendus consequatur atque. Dolor cupiditate ipsa. Non maiores deserunt dolorem quisquam illum. Soluta est reprehenderit. Et nostrum eveniet quibusdam a."], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["excerpt", "Porro."], ["published", true], ["slug", "necessitatibus-repudiandae-70"], ["title", "Nulla veniam qui iure."], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test70' OR lower(name) = 'rspec70' OR lower(name) = 'ruby70' OR lower(name) = '#rails70') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test70"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec70"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby70"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails70"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 27ms (ActiveRecord: 2.3ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'liza_schneider@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "liza_schneider@example.com"], ["encrypted_password", "$2a$04$Z2A64LxqG/b7onk8Q1HIheEvnh9XLcEloUVUYCXpVyu4b6179.JzW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 114], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["description", "Ut ut quidem dignissimos et sapiente laudantium. Enim accusamus porro fuga molestias ea ratione. Sint dignissimos reiciendis consequatur quaerat dolores excepturi sit. Dolorem ipsam corporis alias dolor illum culpa earum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Necessitatibus quia sed libero quis est ullam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"adipisci-fuga-71", "excerpt"=>"Dolorem libero voluptas eius.", "body"=>"Eos exercitationem iste natus nulla dignissimos ea soluta. Illo voluptatum molestiae possimus dolorem. Aut ut praesentium aliquam consequatur quas odio qui. Eos architecto quibusdam quidem ex commodi odio. Autem recusandae sit nihil.", "published"=>true, "tag_list"=>"common,test71,rspec71,ruby71,#rails71", "author_id"=>"115", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'adipisci-fuga-71' LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 12ms (Views: 2.3ms | ActiveRecord: 0.5ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"   (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'dameon@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "dameon@example.com"], ["encrypted_password", "$2a$04$6eyfojKpmkykkaEdNj0SKuh2e.MvtH/J4gdNJrRO11jewo.CeTfau"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 116], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["description", "Iusto facere tenetur illo. Nostrum quae voluptatem aut dolor. Assumenda id aut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ut unde qui dolorem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"culpa-numquam-72", "excerpt"=>"Labore.", "body"=>"Quo voluptas quis in unde aperiam atque odio. Qui culpa reprehenderit. Officiis voluptas enim officia commodi delectus corporis. Rerum quis ab nulla corporis maiores est nobis. Ab consectetur a. Occaecati sed qui labore inventore alias rerum pariatur. Libero eum facilis.", "published"=>true, "tag_list"=>"common,test72,rspec72,ruby72,#rails72", "author_id"=>"117", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'culpa-numquam-72' LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 1.4ms | ActiveRecord: 0.4ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'zachariah_ko@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "zachariah_ko@example.com"], ["encrypted_password", "$2a$04$QrOZ8JOUOziVakOE9ogJBOmK.LESiayAodFXcsetZ9N9BmsfkjJFa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 118], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["description", "Et impedit nisi expedita dolor. Omnis minima error qui. Repellendus quia illum delectus modi animi. Enim debitis at soluta ea."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Voluptatum accusamus eveniet veniam sed unde."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 7ms (Views: 2.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mylene@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mylene@example.net"], ["encrypted_password", "$2a$04$7GTDiIK9SJN5YU8/HOiaf.hFFuhAYkJFtPelDBa.sKFnLhWSBk9ku"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 119], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["description", "Quis non voluptas rerum. Facere incidunt in ipsa. Eos quis in."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quidem voluptatum dolorem dolore nisi."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eligendi-cumque-73' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 120], ["blog_id", 1], ["body", "Rerum eaque assumenda fugit. Aut esse possimus. Culpa consectetur veritatis dolore quisquam aspernatur. Enim consequatur quos id molestiae. Ipsam eveniet atque assumenda. A maxime et delectus sed esse magnam quam. At cupiditate itaque facere est."], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["excerpt", "Odit blanditiis."], ["published", false], ["slug", "eligendi-cumque-73"], ["title", "Ut ullam vero magnam eius reprehenderit quas."], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test73' OR lower(name) = 'rspec73' OR lower(name) = 'ruby73' OR lower(name) = '#rails73') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test73"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec73"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby73"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails73"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'repudiandae-dolores-74' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 121], ["blog_id", 1], ["body", "Ab consectetur a. Occaecati sed qui labore inventore alias rerum pariatur. Libero eum facilis. Quia fuga sit. Provident molestias nisi optio sint rem. Expedita est ea."], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["excerpt", "Et sed et necessitatibus quod."], ["published", false], ["slug", "repudiandae-dolores-74"], ["title", "Consequatur expedita aut rerum quia."], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test74' OR lower(name) = 'rspec74' OR lower(name) = 'ruby74' OR lower(name) = '#rails74') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test74' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails74"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'autem-odio-75' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 122], ["blog_id", 1], ["body", "Facere quos ea. Consequuntur nihil numquam commodi non esse. Rerum ea autem consequatur nesciunt dolor deleniti quis. Asperiores explicabo fugiat. Ducimus non at omnis. Ut et illum quae placeat ab pariatur aut."], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["excerpt", "Necessitatibus sapiente."], ["published", false], ["slug", "autem-odio-75"], ["title", "Quia aut et."], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test75' OR lower(name) = 'rspec75' OR lower(name) = 'ruby75' OR lower(name) = '#rails75') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails75"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.1ms) Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f' ORDER BY written_at DESC, id DESC  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'sidney@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "sidney@example.com"], ["encrypted_password", "$2a$04$sy09QtpnRaXiZGp6drAbtOUHj/Xdm9SRX9BYJOcR31dt4CPR2ygnK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 123], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["description", "Sint maxime et. Quam non et sequi quo est consequatur ut. Repellendus consectetur quia nam incidunt labore accusamus et. Praesentium libero accusantium."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Omnis rerum quaerat vero perferendis et recusandae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'distinctio-molestiae-76' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 124], ["blog_id", 1], ["body", "Qui ea eius recusandae nemo. Laboriosam architecto error expedita et rerum. Porro quasi veniam. Consectetur est tempora. Rem quia deleniti eos. Aut odit est et aspernatur. Magnam cumque numquam eaque quo id."], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["excerpt", "Et ut."], ["published", true], ["slug", "distinctio-molestiae-76"], ["title", "Quia aliquam voluptatem fugit ipsa doloremque quas et."], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test76' OR lower(name) = 'rspec76' OR lower(name) = 'ruby76' OR lower(name) = '#rails76') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails76"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'est-tempore-77' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 125], ["blog_id", 1], ["body", "Eum perspiciatis ad quo non qui repellendus. Aut eum reprehenderit voluptas minus rerum aut aut. Quibusdam fuga nihil in explicabo temporibus. Perspiciatis alias est sit adipisci voluptatem inventore. Illum facere itaque quo. Rerum nesciunt id sit magni."], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["excerpt", "Ea quod."], ["published", true], ["slug", "est-tempore-77"], ["title", "Facilis porro maxime aut sed."], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test77' OR lower(name) = 'rspec77' OR lower(name) = 'ruby77' OR lower(name) = '#rails77') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test77' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test77"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec77"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby77"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails77"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'reprehenderit-eveniet-78' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 126], ["blog_id", 1], ["body", "Modi commodi cumque quo. Ea molestias odio tempore veritatis nulla. Et ut beatae itaque. Atque sint veritatis aliquid a. Et sed natus. Omnis ratione nulla odit in."], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["excerpt", "Atque fugiat."], ["published", true], ["slug", "reprehenderit-eveniet-78"], ["title", "Laboriosam eum qui consequatur."], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test78' OR lower(name) = 'rspec78' OR lower(name) = 'ruby78' OR lower(name) = '#rails78') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test78"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec78"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby78"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails78"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'magni-occaecati-79' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 127], ["blog_id", 1], ["body", "Animi laborum quia quibusdam. Iste rerum totam. Sapiente nobis voluptatum qui. Aspernatur maxime nesciunt blanditiis non quo. Delectus sapiente mollitia ducimus et dolore. Aliquam labore occaecati voluptatum."], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["excerpt", "Quos perferendis eum molestiae error."], ["published", true], ["slug", "magni-occaecati-79"], ["title", "Voluptas eligendi tempora et aut debitis quia nihil."], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test79' OR lower(name) = 'rspec79' OR lower(name) = 'ruby79' OR lower(name) = '#rails79') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails79"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'perspiciatis-molestiae-80' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 128], ["blog_id", 1], ["body", "Aliquid quia doloremque autem. Eius quis vitae temporibus sed ut qui dolore. Laudantium laborum reprehenderit consectetur adipisci nisi quasi. Qui maiores voluptate ratione consectetur. Excepturi minus fuga non nemo et ipsum. Commodi et rerum qui."], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["excerpt", "Numquam et culpa."], ["published", true], ["slug", "perspiciatis-molestiae-80"], ["title", "Fugiat quidem neque eum et provident tenetur."], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test80' OR lower(name) = 'rspec80' OR lower(name) = 'ruby80' OR lower(name) = '#rails80') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test80"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec80"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby80"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails80"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 6ms (Views: 1.4ms | ActiveRecord: 0.1ms) Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'liza_schneider@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "liza_schneider@example.com"], ["encrypted_password", "$2a$04$B8IxvBxDglrwqMcyQmXuN.y5naGBEXOzRewoMrO2ToFvFgoYL1GMa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 129], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["description", "Ut ut quidem dignissimos et sapiente laudantium. Enim accusamus porro fuga molestias ea ratione. Sint dignissimos reiciendis consequatur quaerat dolores excepturi sit. Dolorem ipsam corporis alias dolor illum culpa earum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Necessitatibus quia sed libero quis est ullam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'esse-quis-81' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 130], ["blog_id", 1], ["body", "Dignissimos rerum dicta consectetur totam velit. Ad et rem nam cum repudiandae. Qui nulla et enim magni sapiente. Numquam sit quasi sint. Sapiente nihil numquam qui. Laborum soluta aut ut voluptas. Autem eaque nulla quaerat repellat ut."], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["excerpt", "Sed neque non vel odio."], ["published", true], ["slug", "esse-quis-81"], ["title", "Voluptatem veniam dolorum fugiat dignissimos repudiandae."], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test81' OR lower(name) = 'rspec81' OR lower(name) = 'ruby81' OR lower(name) = '#rails81') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test81"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec81' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec81"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby81"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails81"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Testz", "slug"=>"magnam-ea-82", "excerpt"=>"Inventore ex iste et esse repellendus.", "body"=>"Sed nemo dolorem voluptatem aperiam iste et. Facilis porro voluptatem. Voluptas harum non odit pariatur. Corrupti laborum non minima. Voluptatem aut qui rerum culpa laborum iste. Quas sequi qui.", "published"=>true, "tag_list"=>"common,test82,rspec82,ruby82,#rails82", "author_id"=>"131", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'magnam-ea-82' AND "almanac_posts"."id" != 1) LIMIT 1  (0.1ms) UPDATE "almanac_posts" SET "title" = 'Testz', "slug" = 'magnam-ea-82', "excerpt" = 'Inventore ex iste et esse repellendus.', "body" = 'Sed nemo dolorem voluptatem aperiam iste et. Facilis porro voluptatem. Voluptas harum non odit pariatur. Corrupti laborum non minima. Voluptatem aut qui rerum culpa laborum iste. Quas sequi qui.', "author_id" = 131, "updated_at" = '2012-12-28 04:43:06.480806' WHERE "almanac_posts"."id" = 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test82' OR lower(name) = 'rspec82' OR lower(name) = 'ruby82' OR lower(name) = '#rails82') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test82' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test82"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec82"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby82"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails82"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."tagger_type" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."context" = 'tags' AND "taggings"."tag_id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 31ms (ActiveRecord: 2.7ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'raven@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "raven@example.com"], ["encrypted_password", "$2a$04$DzGIjA3Bj8Ju7dS82nWNxOrOsvzfc0kfQ.lNxwf6LtdDsCPFxbxnq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 132], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["description", "Libero eum facilis. Quia fuga sit. Provident molestias nisi optio sint rem."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolor cupiditate."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quam-fugiat-83' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 133], ["blog_id", 1], ["body", "Necessitatibus sapiente a sequi. Totam aperiam esse aut eaque hic omnis praesentium. Qui occaecati illo quod magni maxime voluptas ducimus. Quis dolorem in et. Asperiores explicabo fugiat. Ducimus non at omnis."], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["excerpt", "Repudiandae nihil quas nam molestias aliquam."], ["published", true], ["slug", "quam-fugiat-83"], ["title", "Expedita est ea."], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test83' OR lower(name) = 'rspec83' OR lower(name) = 'ruby83' OR lower(name) = '#rails83') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails83"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Ut et illum quae placeat ab pariatur aut.", "slug"=>"laudantium-necessitatibus-84", "excerpt"=>"Delectus ut autem voluptas.", "body"=>"Sint dolores sequi. Quis et saepe reiciendis. Eius unde temporibus numquam excepturi. Velit ullam rerum expedita qui quod. Molestiae voluptatem omnis.", "published"=>true, "tag_list"=>"common,test84,rspec84,ruby84,#rails84", "author_id"=>"134", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'laudantium-necessitatibus-84' AND "almanac_posts"."id" != 1) LIMIT 1  (0.1ms) UPDATE "almanac_posts" SET "title" = 'Ut et illum quae placeat ab pariatur aut.', "slug" = 'laudantium-necessitatibus-84', "excerpt" = 'Delectus ut autem voluptas.', "body" = 'Sint dolores sequi. Quis et saepe reiciendis. Eius unde temporibus numquam excepturi. Velit ullam rerum expedita qui quod. Molestiae voluptatem omnis.', "author_id" = 134, "updated_at" = '2012-12-28 04:43:06.547510' WHERE "almanac_posts"."id" = 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test84' OR lower(name) = 'rspec84' OR lower(name) = 'ruby84' OR lower(name) = '#rails84') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test84' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails84"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."tagger_type" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."context" = 'tags' AND "taggings"."tag_id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 29ms (ActiveRecord: 2.5ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'liza_schneider@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "liza_schneider@example.com"], ["encrypted_password", "$2a$04$WdGK5fkVgP9SLB1Su6lh3O6AvWln7XgvVGh7kJHALxxKGbYtJYkoq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 135], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["description", "Ut ut quidem dignissimos et sapiente laudantium. Enim accusamus porro fuga molestias ea ratione. Sint dignissimos reiciendis consequatur quaerat dolores excepturi sit. Dolorem ipsam corporis alias dolor illum culpa earum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Necessitatibus quia sed libero quis est ullam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'esse-quis-85' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 136], ["blog_id", 1], ["body", "Dignissimos rerum dicta consectetur totam velit. Ad et rem nam cum repudiandae. Qui nulla et enim magni sapiente. Numquam sit quasi sint. Sapiente nihil numquam qui. Laborum soluta aut ut voluptas. Autem eaque nulla quaerat repellat ut."], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["excerpt", "Sed neque non vel odio."], ["published", true], ["slug", "esse-quis-85"], ["title", "Voluptatem veniam dolorum fugiat dignissimos repudiandae."], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test85' OR lower(name) = 'rspec85' OR lower(name) = 'ruby85' OR lower(name) = '#rails85') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails85"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"magnam-ea-86", "excerpt"=>"Inventore ex iste et esse repellendus.", "body"=>"Sed nemo dolorem voluptatem aperiam iste et. Facilis porro voluptatem. Voluptas harum non odit pariatur. Corrupti laborum non minima. Voluptatem aut qui rerum culpa laborum iste. Quas sequi qui.", "published"=>true, "tag_list"=>"common,test86,rspec86,ruby86,#rails86", "author_id"=>"137", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'magnam-ea-86' AND "almanac_posts"."id" != 1) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 13ms (Views: 2.4ms | ActiveRecord: 0.6ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'raven@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "raven@example.com"], ["encrypted_password", "$2a$04$Kqr0oOhhUMzqESCcp5KsFOh1VoWzlAzw/glBEOYNSdNyh3kd0qDli"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 138], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["description", "Libero eum facilis. Quia fuga sit. Provident molestias nisi optio sint rem."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolor cupiditate."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quam-fugiat-87' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 139], ["blog_id", 1], ["body", "Necessitatibus sapiente a sequi. Totam aperiam esse aut eaque hic omnis praesentium. Qui occaecati illo quod magni maxime voluptas ducimus. Quis dolorem in et. Asperiores explicabo fugiat. Ducimus non at omnis."], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["excerpt", "Repudiandae nihil quas nam molestias aliquam."], ["published", true], ["slug", "quam-fugiat-87"], ["title", "Expedita est ea."], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test87' OR lower(name) = 'rspec87' OR lower(name) = 'ruby87' OR lower(name) = '#rails87') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby87"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails87"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"hic-rerum-88", "excerpt"=>"Quod et hic quis aut.", "body"=>"Dignissimos aut repellendus repudiandae. Rerum quae quia possimus voluptatem. At praesentium sapiente suscipit recusandae ipsum ipsa. Occaecati ut aliquid quo accusamus voluptatibus. Tenetur sed ratione id ab est omnis qui.", "published"=>true, "tag_list"=>"common,test88,rspec88,ruby88,#rails88", "author_id"=>"140", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'hic-rerum-88' AND "almanac_posts"."id" != 1) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 12ms (Views: 1.5ms | ActiveRecord: 0.6ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 141], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["description", "Recusandae quia in autem deleniti tempora molestiae praesentium. Eum sint culpa ex reiciendis sapiente. Et omnis non. Nemo non voluptatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Rerum dignissimos delectus maxime iste."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 144], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00], ["description", "Sapiente ipsum voluptatem omnis. Iusto voluptates doloribus voluptatem similique nostrum aut. Facere est incidunt exercitationem doloribus aliquam omnis sit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Vel pariatur ut."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:43:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.5ms) rollback transaction Connecting to database specified by database.yml  (1.2ms) DELETE FROM "users";  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';  (0.8ms) DELETE FROM "almanac_posts";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_posts';  (1.0ms) DELETE FROM "almanac_images";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_images';  (0.9ms) DELETE FROM "tags";  (0.1ms) DELETE FROM sqlite_sequence where name = 'tags';  (0.7ms) DELETE FROM "taggings";  (0.1ms) DELETE FROM sqlite_sequence where name = 'taggings';  (0.7ms) DELETE FROM "almanac_comments";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_comments';  (1.0ms) DELETE FROM "almanac_blogs";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_blogs';  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (1.6ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (5.1ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 2], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["description", "Voluptate modi provident. Vel cupiditate architecto. Ut aut inventore."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Facilis totam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'recusandae-laboriosam-1' LIMIT 1 SQL (0.6ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Qui at dolorem excepturi esse sed minus cupiditate. Totam consectetur aspernatur provident consequatur dolores. Nulla numquam voluptatum ipsa. Totam exercitationem repellendus eum saepe. Aspernatur odit excepturi animi. Minima provident id veritatis aspernatur excepturi ratione."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["excerpt", "Aut voluptas sint at qui."], ["published", true], ["slug", "recusandae-laboriosam-1"], ["title", "Omnis nulla sunt quod ut."], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test1' OR lower(name) = 'rspec1' OR lower(name) = 'ruby1' OR lower(name) = '#rails1') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test1"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails1"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 4], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["description", "Inventore aut ex commodi quasi ut voluptas. Sit perferendis non nobis asperiores. Repellat ratione modi architecto ut qui. In mollitia provident. Consectetur aut odit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quibusdam rerum qui iusto."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'praesentium-velit-2' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 3], ["blog_id", 1], ["body", "Similique voluptatibus quos maiores dolores sint rerum. Porro vel delectus eos ea molestias autem quidem. Beatae soluta esse ut eos aliquid. Nihil non eum. Ut animi labore soluta."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["excerpt", "Sit ducimus doloremque."], ["published", true], ["slug", "praesentium-velit-2"], ["title", "Illo sint voluptatum."], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test2' OR lower(name) = 'rspec2' OR lower(name) = 'ruby2' OR lower(name) = '#rails2') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test2"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec2"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby2"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails2"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "larry@example.com"], ["author_name", "Mrs. Rodolfo Marquardt"], ["body", "Voluptatum est sapiente minima dicta molestiae earum."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" ORDER BY id ASC  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 6], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["description", "Odit corporis adipisci itaque in consectetur velit dolore. Aspernatur doloremque quo at velit animi est ipsam. Sed ut rerum similique voluptatibus consequuntur cupiditate alias."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Illo provident fugit qui qui."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consectetur-qui-3' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 5], ["blog_id", 1], ["body", "Impedit maxime et velit. Velit nobis accusamus qui est cupiditate molestias. Vitae nemo et eos fugit illum. Similique aperiam assumenda. Ipsa ut eum repellendus atque quas et. Nihil voluptates deleniti quasi. Voluptate omnis et officia aspernatur sed."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["excerpt", "Alias vel harum ut."], ["published", true], ["slug", "consectetur-qui-3"], ["title", "Saepe tempore asperiores qui sed quia et."], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test3' OR lower(name) = 'rspec3' OR lower(name) = 'ruby3' OR lower(name) = '#rails3') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test3"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec3"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails3"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 8], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["description", "Beatae provident qui commodi a aliquid velit fugiat. Porro deleniti vitae illum fuga velit earum. Atque consectetur qui ut similique sint."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Fugit vero autem explicabo voluptatibus enim vel."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sit-qui-4' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 7], ["blog_id", 1], ["body", "Quod quia et commodi et. Repellat veniam odio quia veritatis iure. Magni labore in excepturi et suscipit eum molestias. Vel eaque rerum optio veritatis magnam et sint. Ut omnis distinctio impedit ea natus similique voluptas."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["excerpt", "Repellat nam laboriosam velit aperiam."], ["published", true], ["slug", "sit-qui-4"], ["title", "Eligendi est blanditiis iste beatae velit voluptatem placeat."], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test4' OR lower(name) = 'rspec4' OR lower(name) = 'ruby4' OR lower(name) = '#rails4') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec4"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby4' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails4"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 10], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["description", "Consequatur dolorem tenetur voluptatibus facere a. Est est enim non tenetur autem. Iure vel aut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Magni temporibus non est at."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptas-aut-5' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 9], ["blog_id", 1], ["body", "Consequatur voluptate eos omnis expedita ea et. Sed nemo dolor ut quasi natus. Ratione ut eaque consequatur sint architecto. Ratione quas fugiat ut eum quibusdam corporis ducimus. Et excepturi assumenda rem."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["excerpt", "Consequuntur asperiores repellendus est et quaerat."], ["published", true], ["slug", "voluptas-aut-5"], ["title", "Sapiente qui sequi eum minus ab consequatur est."], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test5' OR lower(name) = 'rspec5' OR lower(name) = 'ruby5' OR lower(name) = '#rails5') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails5"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "jazlyn@example.org"], ["author_name", "Vita Hermiston"], ["body", "Porro mollitia deserunt esse dignissimos illum cumque. Aut repellendus porro facere dolorem."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "dana@example.net"], ["author_name", "Granville Murphy I"], ["body", "Voluptatem in enim. Repellat et non optio dolorem est dicta. Aliquid nulla accusantium est repellendus quas ut."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "johnson.dicki@example.org"], ["author_name", "Susanna Beahan IV"], ["body", "Provident dolorum quo cumque."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "wilma_mayer@example.net"], ["author_name", "Trenton Douglas"], ["body", "Et enim provident vel non enim ullam. Natus ut saepe ex magni esse velit. Et nam quidem aut repellat illum totam officia."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "webster.hegmann@example.com"], ["author_name", "Morton Hammes"], ["body", "Recusandae voluptas possimus excepturi. Maxime vel doloribus facere. Temporibus voluptas voluptatem repellendus."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "sammie@example.org"], ["author_name", "Sonny Konopelski"], ["body", "Ullam vitae doloremque quod aut quasi."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "alison@example.com"], ["author_name", "Linnea Treutel"], ["body", "Qui et sunt rerum est. Est eveniet voluptatem tempore illum quam non. Ratione exercitationem saepe voluptatum."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "isabell_lockman@example.org"], ["author_name", "Ms. Beryl Gutkowski"], ["body", "Voluptas est eveniet recusandae."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "elliot_hudson@example.org"], ["author_name", "Rosina Skiles II"], ["body", "Voluptas aperiam et aut omnis iusto est. Nesciunt cumque expedita quidem quis iusto non ut. Autem quia nesciunt iure ullam quidem rem aut."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "keenan@example.org"], ["author_name", "Jayce Lakin DDS"], ["body", "Molestias autem illum. Vel voluptatem expedita qui."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "winnifred.sanford@example.com"], ["author_name", "Miss Gilberto Lemke"], ["body", "Harum rerum dignissimos illum dicta minima quas. Voluptas veritatis aliquid iure aut eveniet."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "wilber_bergstrom@example.org"], ["author_name", "Ada Miller"], ["body", "Eius aspernatur pariatur. Aut totam distinctio nostrum et ipsa dignissimos nemo. Nostrum et et."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "hilma_auer@example.net"], ["author_name", "Mrs. Mellie Miller"], ["body", "Odit consequatur recusandae voluptas repellat porro id facilis. Dolorum omnis explicabo omnis facere."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "aaliyah.prohaska@example.net"], ["author_name", "Ms. Dusty Koss"], ["body", "Repellat est vel unde suscipit totam. Consequuntur fugit ullam esse."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "darryl@example.org"], ["author_name", "Dorris Durgan"], ["body", "Voluptatem quam id iste quia."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments" WHERE "almanac_comments"."spam" = 't'  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mark@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mark@example.net"], ["encrypted_password", "$2a$04$7E1AqWha0b8paG0OuV0E0eS54Zw5CWLctlgImXUt.JDpmEjp.opRW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 12], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["description", "Repellendus voluptatem culpa. Dolores ipsam ad reprehenderit culpa voluptatem. Aliquid est rem dolor et. Eius deserunt veniam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Neque officia voluptatem quibusdam repudiandae iusto molestias."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sapiente-blanditiis-6' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 11], ["blog_id", 1], ["body", "Reprehenderit et soluta quas quia et aliquam. Id sed quod porro rerum iste animi. Ex non natus sapiente et. Quaerat et quo et doloremque eius. Ipsum blanditiis officia reprehenderit. Vero mollitia accusamus quae rerum iusto."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["excerpt", "Culpa harum omnis temporibus officia."], ["published", true], ["slug", "sapiente-blanditiis-6"], ["title", "Dolorum qui molestiae dicta."], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test6' OR lower(name) = 'rspec6' OR lower(name) = 'ruby6' OR lower(name) = '#rails6') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test6"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec6"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby6"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails6"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Raleigh Dietrich DVM", "author_email"=>"lavonne@example.net", "body"=>"Quasi nihil laudantium dolor perferendis. Sequi esse tenetur non voluptas voluptatem sunt voluptas."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "lavonne@example.net"], ["author_name", "Raleigh Dietrich DVM"], ["body", "Quasi nihil laudantium dolor perferendis. Sequi esse tenetur non voluptas voluptatem sunt voluptas."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/sapiente-blanditiis-6 Completed 302 Found in 9ms (ActiveRecord: 0.6ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'chelsie@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "chelsie@example.com"], ["encrypted_password", "$2a$04$WBxMPansLORbjS3EtZv8dOXIritPHeXAhAfEHiICdgzTNVCV/raH."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 14], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["description", "Praesentium necessitatibus harum excepturi ipsa. Ut dolores dolorem voluptatem est autem. Velit officiis blanditiis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quam repellendus est dicta sit velit et."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quo-voluptas-7' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 13], ["blog_id", 1], ["body", "Fuga maiores eum corporis similique qui. Quia quis repudiandae ullam ipsam tenetur quisquam. Sapiente aut et vero corporis neque omnis non. Corporis enim possimus ipsam distinctio inventore. Est est ullam voluptatem et. Accusamus voluptatem est quo possimus omnis consequatur deserunt. Aliquam voluptate sint est ut sit."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["excerpt", "Quo veritatis laboriosam sed magni earum."], ["published", true], ["slug", "quo-voluptas-7"], ["title", "Ut debitis possimus non cumque dolore et nihil."], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test7' OR lower(name) = 'rspec7' OR lower(name) = 'ruby7' OR lower(name) = '#rails7') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test7"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails7"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.3ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Ms. Arianna Kuvalis", "author_email"=>"emmanuelle@example.net", "body"=>nil}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Redirected to http://test.host/almanac/quo-voluptas-7 Completed 302 Found in 7ms (ActiveRecord: 0.2ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mark@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mark@example.net"], ["encrypted_password", "$2a$04$bMGSqS4tSSgPvKi65KekfOZDMVrURQV4ZkBt7DCQwozY9DUOl65eO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 16], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["description", "Repellendus voluptatem culpa. Dolores ipsam ad reprehenderit culpa voluptatem. Aliquid est rem dolor et. Eius deserunt veniam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Neque officia voluptatem quibusdam repudiandae iusto molestias."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sapiente-blanditiis-8' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 15], ["blog_id", 1], ["body", "Reprehenderit et soluta quas quia et aliquam. Id sed quod porro rerum iste animi. Ex non natus sapiente et. Quaerat et quo et doloremque eius. Ipsum blanditiis officia reprehenderit. Vero mollitia accusamus quae rerum iusto."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["excerpt", "Culpa harum omnis temporibus officia."], ["published", true], ["slug", "sapiente-blanditiis-8"], ["title", "Dolorum qui molestiae dicta."], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test8' OR lower(name) = 'rspec8' OR lower(name) = 'ruby8' OR lower(name) = '#rails8') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails8"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Raleigh Dietrich DVM", "author_email"=>"lavonne@example.net", "body"=>"Quasi nihil laudantium dolor perferendis. Sequi esse tenetur non voluptas voluptatem sunt voluptas."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "lavonne@example.net"], ["author_name", "Raleigh Dietrich DVM"], ["body", "Quasi nihil laudantium dolor perferendis. Sequi esse tenetur non voluptas voluptatem sunt voluptas."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/sapiente-blanditiis-8 Completed 302 Found in 7ms (ActiveRecord: 0.4ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'chelsie@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "chelsie@example.com"], ["encrypted_password", "$2a$04$/b0MKi1cQyzyHD7nQa4dmO9BH9fO8HoPqH0F.WnajoZsKPNRPk34y"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 18], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["description", "Praesentium necessitatibus harum excepturi ipsa. Ut dolores dolorem voluptatem est autem. Velit officiis blanditiis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quam repellendus est dicta sit velit et."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quo-voluptas-9' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 17], ["blog_id", 1], ["body", "Fuga maiores eum corporis similique qui. Quia quis repudiandae ullam ipsam tenetur quisquam. Sapiente aut et vero corporis neque omnis non. Corporis enim possimus ipsam distinctio inventore. Est est ullam voluptatem et. Accusamus voluptatem est quo possimus omnis consequatur deserunt. Aliquam voluptate sint est ut sit."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["excerpt", "Quo veritatis laboriosam sed magni earum."], ["published", true], ["slug", "quo-voluptas-9"], ["title", "Ut debitis possimus non cumque dolore et nihil."], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test9' OR lower(name) = 'rspec9' OR lower(name) = 'ruby9' OR lower(name) = '#rails9') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test9"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec9"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby9"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails9"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments" Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Ms. Arianna Kuvalis", "author_email"=>"emmanuelle@example.net", "body"=>"Sed soluta velit suscipit incidunt qui cumque sed. Animi dolor voluptatem."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "emmanuelle@example.net"], ["author_name", "Ms. Arianna Kuvalis"], ["body", "Sed soluta velit suscipit incidunt qui cumque sed. Animi dolor voluptatem."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/quo-voluptas-9 Completed 302 Found in 7ms (ActiveRecord: 0.5ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mark@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mark@example.net"], ["encrypted_password", "$2a$04$YORLYJQqcvW4/BXK3S/ZJ.gjXuca0AHdokgNP2wZmChaCK7Hmb/By"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 20], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["description", "Repellendus voluptatem culpa. Dolores ipsam ad reprehenderit culpa voluptatem. Aliquid est rem dolor et. Eius deserunt veniam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Neque officia voluptatem quibusdam repudiandae iusto molestias."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sapiente-blanditiis-10' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 19], ["blog_id", 1], ["body", "Reprehenderit et soluta quas quia et aliquam. Id sed quod porro rerum iste animi. Ex non natus sapiente et. Quaerat et quo et doloremque eius. Ipsum blanditiis officia reprehenderit. Vero mollitia accusamus quae rerum iusto."], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["excerpt", "Culpa harum omnis temporibus officia."], ["published", true], ["slug", "sapiente-blanditiis-10"], ["title", "Dolorum qui molestiae dicta."], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test10' OR lower(name) = 'rspec10' OR lower(name) = 'ruby10' OR lower(name) = '#rails10') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test10"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec10"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby10"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails10"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'soledad@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "soledad@example.net"], ["encrypted_password", "$2a$04$LEZw9O5S065rNp6sAzRWGeU8/fsmavpg7EiSysETYQOpnxwRi5/BG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 23], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["description", "Aliquam sed ut aperiam expedita qui a saepe. In voluptatibus error omnis. Debitis quis voluptatem rerum sequi non. Est libero ea quas eos."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Voluptatibus laborum neque."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ad-aut-11' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 22], ["blog_id", 1], ["body", "In consectetur minus molestias. Ut ipsam est et facilis. Ut qui qui perferendis veritatis voluptatum. Vel omnis reprehenderit consequatur et. Rerum aliquam porro quisquam voluptatibus."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Velit quas."], ["published", true], ["slug", "ad-aut-11"], ["title", "Quasi aliquam et minus."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test11' OR lower(name) = 'rspec11' OR lower(name) = 'ruby11' OR lower(name) = '#rails11') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test11"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec11"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby11"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails11"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mark@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mark@example.net"], ["encrypted_password", "$2a$04$QVsLH5bD7.usEL0uQcwLwearwKh2nVytEwFanaETv8cNfRDf/Nb7S"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.6ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 26], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["description", "Repellendus voluptatem culpa. Dolores ipsam ad reprehenderit culpa voluptatem. Aliquid est rem dolor et. Eius deserunt veniam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Neque officia voluptatem quibusdam repudiandae iusto molestias."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sapiente-blanditiis-12' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 25], ["blog_id", 1], ["body", "Reprehenderit et soluta quas quia et aliquam. Id sed quod porro rerum iste animi. Ex non natus sapiente et. Quaerat et quo et doloremque eius. Ipsum blanditiis officia reprehenderit. Vero mollitia accusamus quae rerum iusto."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Culpa harum omnis temporibus officia."], ["published", true], ["slug", "sapiente-blanditiis-12"], ["title", "Dolorum qui molestiae dicta."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test12' OR lower(name) = 'rspec12' OR lower(name) = 'ruby12' OR lower(name) = '#rails12') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test12"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec12"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby12"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails12"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "lavonne@example.net"], ["author_name", "Raleigh Dietrich DVM"], ["body", "Quasi nihil laudantium dolor perferendis. Sequi esse tenetur non voluptas voluptatem sunt voluptas."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#destroy as HTML Parameters: {"id"=>"1", "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "almanac_comments" WHERE "almanac_comments"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/1 Completed 302 Found in 7ms (ActiveRecord: 0.4ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'chelsie@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "chelsie@example.com"], ["encrypted_password", "$2a$04$TUlVTg.TC4g4w47c1g38Be7xJBOd/8.7lJQoDJuSujqOSCWjwaNhC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 28], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["description", "Praesentium necessitatibus harum excepturi ipsa. Ut dolores dolorem voluptatem est autem. Velit officiis blanditiis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quam repellendus est dicta sit velit et."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quo-voluptas-13' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 27], ["blog_id", 1], ["body", "Fuga maiores eum corporis similique qui. Quia quis repudiandae ullam ipsam tenetur quisquam. Sapiente aut et vero corporis neque omnis non. Corporis enim possimus ipsam distinctio inventore. Est est ullam voluptatem et. Accusamus voluptatem est quo possimus omnis consequatur deserunt. Aliquam voluptate sint est ut sit."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Quo veritatis laboriosam sed magni earum."], ["published", true], ["slug", "quo-voluptas-13"], ["title", "Ut debitis possimus non cumque dolore et nihil."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test13' OR lower(name) = 'rspec13' OR lower(name) = 'ruby13' OR lower(name) = '#rails13') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails13"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "emmanuelle@example.net"], ["author_name", "Ms. Arianna Kuvalis"], ["body", "Sed soluta velit suscipit incidunt qui cumque sed. Animi dolor voluptatem."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_comments" Processing by Almanac::CommentsController#destroy as HTML Parameters: {"id"=>"1", "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) DELETE FROM "almanac_comments" WHERE "almanac_comments"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/1 Completed 302 Found in 6ms (ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 30], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["description", "Accusamus recusandae aut. Aut similique recusandae sed fugiat. Sequi quis similique id alias. Sunt et nesciunt cumque optio accusamus aut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Voluptatem quos qui animi dolore."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'excepturi-dolores-14' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 32], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["description", "Corrupti reiciendis est quo non. Vero illo aut sint molestiae. Et voluptate dicta facere quae blanditiis placeat. Aut maxime non. Rem soluta rerum quia."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolor quos illum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'assumenda-voluptatem-15' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 34], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["description", "Eos praesentium inventore debitis et tempore. Omnis maiores excepturi. Eos officiis qui ullam ut eligendi in voluptas."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "In ut ad quia perspiciatis sunt nisi."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.3ms) rollback transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 36], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["description", "Aut nostrum nesciunt unde aspernatur quia. Nemo et ea. Et pariatur quibusdam iusto in odit beatae rerum. Sunt omnis tempore est rerum illum sapiente enim."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Inventore possimus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quos-consequatur-16' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 35], ["blog_id", 1], ["body", "Quas vero quo voluptas quia et. Et deserunt ducimus nulla omnis. Voluptatum consequatur sit non repellendus nihil optio ipsa. Iusto sed neque. Voluptatibus rerum voluptatum."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Architecto est corporis placeat dolores."], ["published", true], ["slug", "quos-consequatur-16"], ["title", "Molestias reiciendis itaque tempora voluptate."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test17' OR lower(name) = 'rspec17' OR lower(name) = 'ruby17' OR lower(name) = '#rails17') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test17"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec17"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby17"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails17"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptates-dolor-17' LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 39], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["description", "Accusantium tempora accusamus enim neque et. Omnis voluptate quis omnis nisi sapiente. Officia vel eius pariatur. Doloribus totam rem pariatur cumque."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Minima modi quis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'illo-recusandae-18' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 41], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["description", "Aut illum nemo corporis recusandae qui dolor laudantium. Nemo pariatur recusandae laudantium impedit. Quae est corporis nobis modi suscipit in ullam. Voluptates libero quo est molestiae. Sapiente nostrum voluptate."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolore voluptatibus dolor necessitatibus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quaerat-incidunt-19' LIMIT 1  (0.3ms) rollback transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tag Load (0.3ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (1.2ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 43], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["description", "Vitae quis saepe ratione voluptatem nulla. Optio voluptas totam quo voluptas dolorum minima qui. Rerum ea iure ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Id eligendi odio."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'saepe-sint-20' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 44], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["description", "Mollitia temporibus architecto numquam praesentium ipsam similique. Sint quod molestiae non laboriosam cum. Sunt voluptatem enim velit aut eos."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sed expedita repellat eaque assumenda hic."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'omnis-maiores-21' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 45], ["blog_id", 1], ["body", "Qui ut assumenda pariatur maxime recusandae neque doloremque. Aut suscipit labore natus ipsam. Quo ut sequi et illo eius itaque. Commodi ab saepe. Autem deserunt maiores et iusto alias nam eos. Quod voluptatum illo sint laudantium."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Odio labore impedit sequi."], ["published", true], ["slug", "omnis-maiores-21"], ["title", "Voluptatem qui et doloremque."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test22' OR lower(name) = 'rspec22' OR lower(name) = 'ruby22' OR lower(name) = '#rails22') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test22"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec22"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby22"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails22"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'a-non-22' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 46], ["blog_id", 1], ["body", "Eos harum culpa in. Quisquam fugit sapiente quibusdam et et ullam. Quis vero sit. Ex libero quas est omnis eligendi. Totam eveniet qui quia praesentium est adipisci. Animi eum qui ipsum aut."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Consequatur quod voluptas dolorem."], ["published", true], ["slug", "a-non-22"], ["title", "Ipsum asperiores quasi ut."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test23' OR lower(name) = 'rspec23' OR lower(name) = 'ruby23' OR lower(name) = '#rails23') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test23' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test23"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec23"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby23' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby23"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails23"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.3ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.2ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sed-ea-23' LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.6ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 49], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["description", "Voluptatem alias quidem aliquam id ut non. Odit nulla corrupti dolorem ab et. Temporibus numquam autem itaque. Sapiente inventore earum. Aut et ut neque laudantium."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quisquam saepe assumenda est."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nobis-nihil-24' LIMIT 1  (0.4ms) rollback transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tag Load (0.3ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 51], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["description", "Nihil voluptatum labore odio aperiam excepturi quia. Asperiores veritatis dolor aut eveniet laboriosam alias. Libero voluptas reiciendis tenetur quaerat et tempore. Nam ut nisi eveniet unde sit. Odio qui adipisci et ea non suscipit quaerat."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Tempora atque et autem inventore ut."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 52], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["description", "Assumenda neque quo numquam. Labore qui quos quia unde totam enim. Sed nemo dolor ut quasi natus. Ratione ut eaque consequatur sint architecto."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Reprehenderit et et facere deserunt."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-voluptatem-25' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 53], ["blog_id", 1], ["body", "Ut et quia aut vero dolores qui. Consectetur praesentium eaque ut. Adipisci odit excepturi voluptatum dolor aspernatur. Ut mollitia dignissimos excepturi ut. Natus nesciunt maiores nobis et. Dignissimos reprehenderit libero deleniti quia."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Totam reprehenderit occaecati enim."], ["published", true], ["slug", "aut-voluptatem-25"], ["title", "Ratione quas fugiat ut eum quibusdam corporis ducimus."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test27' OR lower(name) = 'rspec27' OR lower(name) = 'ruby27' OR lower(name) = '#rails27') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails27"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'in-explicabo-26' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 54], ["blog_id", 1], ["body", "Nihil voluptates voluptas quae deleniti aut. Et est rerum at deserunt consequatur unde. Dolor esse quia quibusdam quam dicta. Rem in iusto a. Est quibusdam maiores."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Et velit explicabo doloribus."], ["published", true], ["slug", "in-explicabo-26"], ["title", "Omnis ut ut vel."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test28' OR lower(name) = 'rspec28' OR lower(name) = 'ruby28' OR lower(name) = '#rails28') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test28' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test28"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec28"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby28"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails28' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails28"]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.2ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'repudiandae-neque-27' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 55], ["blog_id", 1], ["body", "Blanditiis minima modi quam dolore deleniti odit delectus. Voluptates similique molestias nam voluptas corrupti ea. Magnam voluptate provident dignissimos nostrum. Quas et ullam autem placeat. Sapiente consequatur repudiandae voluptas. Aut rerum adipisci doloribus in. Harum reiciendis tempora commodi consequatur."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Ex corporis."], ["published", true], ["slug", "repudiandae-neque-27"], ["title", "Praesentium repudiandae ad ullam voluptatem voluptatibus repellendus."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test29' OR lower(name) = 'rspec29' OR lower(name) = 'ruby29' OR lower(name) = '#rails29') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test29' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails29"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'placeat-quae-28' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 56], ["blog_id", 1], ["body", "Delectus est praesentium explicabo. Et et id facere quis consectetur laudantium. Nihil autem totam qui repellendus. Dignissimos voluptas maiores quibusdam velit ad vel. Suscipit veritatis omnis commodi neque accusantium. Veritatis qui sunt facilis voluptatem. Sapiente velit repellat neque id sed."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Doloribus omnis sunt perferendis."], ["published", true], ["slug", "placeat-quae-28"], ["title", "Temporibus sed explicabo repellendus aut qui et est."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test30' OR lower(name) = 'rspec30' OR lower(name) = 'ruby30' OR lower(name) = '#rails30') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails30"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dicta-et-29' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 57], ["blog_id", 1], ["body", "Quis harum et voluptatem praesentium perferendis. Velit corporis necessitatibus veritatis quae sit tempora. Quia quia cum harum natus officiis molestiae porro. Itaque occaecati voluptatibus distinctio ut. Eum porro explicabo modi. Nostrum aliquid itaque sunt."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Consequatur ut suscipit."], ["published", false], ["slug", "dicta-et-29"], ["title", "Qui adipisci doloremque aliquam maxime accusamus rerum omnis."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test31' OR lower(name) = 'rspec31' OR lower(name) = 'ruby31' OR lower(name) = '#rails31') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails31"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-corrupti-30' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 58], ["blog_id", 1], ["body", "Nesciunt quam et id atque aut. Qui nesciunt eum consectetur sed. Et et delectus vel non explicabo eos a. Eligendi eos sunt sed et voluptatem voluptas. Veritatis porro qui accusamus."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Occaecati."], ["published", false], ["slug", "qui-corrupti-30"], ["title", "Ullam et quod."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test32' OR lower(name) = 'rspec32' OR lower(name) = 'ruby32' OR lower(name) = '#rails32') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails32"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ut-quia-31' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 59], ["blog_id", 1], ["body", "Ut omnis rerum consectetur qui ut. Repellendus aut ut consequuntur earum ipsam cupiditate sapiente. Voluptas sunt esse. Rerum quaerat eius qui porro iste sed est. Non at voluptatem odit eos enim. Et praesentium natus aut recusandae. Exercitationem earum ut quo reiciendis et praesentium."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Optio et aut reiciendis."], ["published", false], ["slug", "ut-quia-31"], ["title", "In magni sunt autem eos nostrum voluptatum."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test33' OR lower(name) = 'rspec33' OR lower(name) = 'ruby33' OR lower(name) = '#rails33') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test33"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec33"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby33"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails33"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 't'  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 60], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["description", "Assumenda neque quo numquam. Labore qui quos quia unde totam enim. Sed nemo dolor ut quasi natus. Ratione ut eaque consequatur sint architecto."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Reprehenderit et et facere deserunt."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-voluptatem-32' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 61], ["blog_id", 1], ["body", "Ut et quia aut vero dolores qui. Consectetur praesentium eaque ut. Adipisci odit excepturi voluptatum dolor aspernatur. Ut mollitia dignissimos excepturi ut. Natus nesciunt maiores nobis et. Dignissimos reprehenderit libero deleniti quia."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Totam reprehenderit occaecati enim."], ["published", true], ["slug", "aut-voluptatem-32"], ["title", "Ratione quas fugiat ut eum quibusdam corporis ducimus."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test34' OR lower(name) = 'rspec34' OR lower(name) = 'ruby34' OR lower(name) = '#rails34') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails34"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'in-explicabo-33' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 62], ["blog_id", 1], ["body", "Nihil voluptates voluptas quae deleniti aut. Et est rerum at deserunt consequatur unde. Dolor esse quia quibusdam quam dicta. Rem in iusto a. Est quibusdam maiores."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Et velit explicabo doloribus."], ["published", true], ["slug", "in-explicabo-33"], ["title", "Omnis ut ut vel."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test35' OR lower(name) = 'rspec35' OR lower(name) = 'ruby35' OR lower(name) = '#rails35') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test35' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails35"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'repudiandae-neque-34' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 63], ["blog_id", 1], ["body", "Blanditiis minima modi quam dolore deleniti odit delectus. Voluptates similique molestias nam voluptas corrupti ea. Magnam voluptate provident dignissimos nostrum. Quas et ullam autem placeat. Sapiente consequatur repudiandae voluptas. Aut rerum adipisci doloribus in. Harum reiciendis tempora commodi consequatur."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Ex corporis."], ["published", true], ["slug", "repudiandae-neque-34"], ["title", "Praesentium repudiandae ad ullam voluptatem voluptatibus repellendus."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test36' OR lower(name) = 'rspec36' OR lower(name) = 'ruby36' OR lower(name) = '#rails36') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test36' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test36"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec36"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby36"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails36"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'placeat-quae-35' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 64], ["blog_id", 1], ["body", "Delectus est praesentium explicabo. Et et id facere quis consectetur laudantium. Nihil autem totam qui repellendus. Dignissimos voluptas maiores quibusdam velit ad vel. Suscipit veritatis omnis commodi neque accusantium. Veritatis qui sunt facilis voluptatem. Sapiente velit repellat neque id sed."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Doloribus omnis sunt perferendis."], ["published", true], ["slug", "placeat-quae-35"], ["title", "Temporibus sed explicabo repellendus aut qui et est."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test37' OR lower(name) = 'rspec37' OR lower(name) = 'ruby37' OR lower(name) = '#rails37') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test37"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec37"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby37"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails37"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dicta-et-36' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 65], ["blog_id", 1], ["body", "Quis harum et voluptatem praesentium perferendis. Velit corporis necessitatibus veritatis quae sit tempora. Quia quia cum harum natus officiis molestiae porro. Itaque occaecati voluptatibus distinctio ut. Eum porro explicabo modi. Nostrum aliquid itaque sunt."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Consequatur ut suscipit."], ["published", true], ["slug", "dicta-et-36"], ["title", "Qui adipisci doloremque aliquam maxime accusamus rerum omnis."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test38' OR lower(name) = 'rspec38' OR lower(name) = 'ruby38' OR lower(name) = '#rails38') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails38"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-corrupti-37' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 66], ["blog_id", 1], ["body", "Nesciunt quam et id atque aut. Qui nesciunt eum consectetur sed. Et et delectus vel non explicabo eos a. Eligendi eos sunt sed et voluptatem voluptas. Veritatis porro qui accusamus."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Occaecati."], ["published", true], ["slug", "qui-corrupti-37"], ["title", "Ullam et quod."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test39' OR lower(name) = 'rspec39' OR lower(name) = 'ruby39' OR lower(name) = '#rails39') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test39"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec39"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby39"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails39"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ut-quia-38' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 67], ["blog_id", 1], ["body", "Ut omnis rerum consectetur qui ut. Repellendus aut ut consequuntur earum ipsam cupiditate sapiente. Voluptas sunt esse. Rerum quaerat eius qui porro iste sed est. Non at voluptatem odit eos enim. Et praesentium natus aut recusandae. Exercitationem earum ut quo reiciendis et praesentium."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Optio et aut reiciendis."], ["published", true], ["slug", "ut-quia-38"], ["title", "In magni sunt autem eos nostrum voluptatum."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test40' OR lower(name) = 'rspec40' OR lower(name) = 'ruby40' OR lower(name) = '#rails40') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test40"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec40"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby40"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails40"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'molestias-fugiat-39' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 68], ["blog_id", 1], ["body", "Asperiores recusandae tempore esse vitae et. Veritatis modi voluptas libero rerum qui esse non. Non hic ut omnis dolores eum cupiditate. Reprehenderit sequi maxime non quae molestiae. Dolorum fuga consequuntur est eos provident nulla aut. Exercitationem accusamus aut labore quam. Ullam molestias consequuntur earum qui."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "A magni omnis suscipit."], ["published", true], ["slug", "molestias-fugiat-39"], ["title", "Consequatur numquam id ut maxime repellendus."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test41' OR lower(name) = 'rspec41' OR lower(name) = 'ruby41' OR lower(name) = '#rails41') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test41"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec41"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby41"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails41"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'commodi-in-40' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 69], ["blog_id", 1], ["body", "Aut illum nemo corporis recusandae qui dolor laudantium. Nemo pariatur recusandae laudantium impedit. Quae est corporis nobis modi suscipit in ullam. Voluptates libero quo est molestiae. Sapiente nostrum voluptate. Illo necessitatibus voluptatum dolor dolores sed. Ex vel blanditiis."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Voluptatem est quaerat aliquam."], ["published", true], ["slug", "commodi-in-40"], ["title", "Enim iure sed."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test42' OR lower(name) = 'rspec42' OR lower(name) = 'ruby42' OR lower(name) = '#rails42') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails42"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'maiores-doloremque-41' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 70], ["blog_id", 1], ["body", "Optio voluptas totam quo voluptas dolorum minima qui. Rerum ea iure ut. Sed expedita repellat eaque assumenda hic itaque. Praesentium maxime et. Minima tenetur sed corrupti."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Excepturi nam harum asperiores consequatur."], ["published", true], ["slug", "maiores-doloremque-41"], ["title", "Veniam excepturi facere molestiae debitis quis architecto."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test43' OR lower(name) = 'rspec43' OR lower(name) = 'ruby43' OR lower(name) = '#rails43') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test43"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec43"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby43"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails43"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-saepe-42' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 71], ["blog_id", 1], ["body", "Voluptatem ipsa qui quia. Corrupti nostrum rerum ullam ut. Dolores accusamus sit praesentium. Autem nisi perferendis. Sit explicabo dolorem est dignissimos iste modi in. Numquam quo magnam voluptatem id."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Sunt quisquam."], ["published", false], ["slug", "aut-saepe-42"], ["title", "Et deserunt ut eaque."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test44' OR lower(name) = 'rspec44' OR lower(name) = 'ruby44' OR lower(name) = '#rails44') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test44"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec44"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby44"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails44"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 42 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 42], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 43 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 43], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 44 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 44], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 45 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 45], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'est-ut-43' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 72], ["blog_id", 1], ["body", "Voluptate quam quaerat. Corrupti dolores cumque ea nostrum dolorem architecto. Non accusantium et illum facilis vitae aut. Perspiciatis vero earum quasi ad aperiam. Tempore sunt id autem dolor."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Ipsum asperiores."], ["published", false], ["slug", "est-ut-43"], ["title", "Voluptatibus nesciunt qui aliquid quo molestias."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test45' OR lower(name) = 'rspec45' OR lower(name) = 'ruby45' OR lower(name) = '#rails45') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test45"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec45"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby45"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails45"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 46 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 46], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 47 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 47], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 48 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 48], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 49 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 49], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_6f5b29c ON posts_taggings_6f5b29c.taggable_id = almanac_posts.id AND posts_taggings_6f5b29c.taggable_type = 'Almanac::Post' AND posts_taggings_6f5b29c.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 73], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["description", "Magni rerum sit. Modi maxime at blanditiis. Molestiae molestias sed qui. Nisi sequi repellendus repellat sint voluptates aliquid dicta. Ratione voluptatem odio explicabo."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Fugiat odit praesentium."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'neque-voluptatum-44' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 74], ["blog_id", 1], ["body", "Est ad repellat quisquam et ducimus. Aut harum expedita ex voluptates ea. Nihil molestiae mollitia. Repellendus cupiditate consequuntur quasi aut accusantium possimus repellat. Sequi dolorem non ipsa. Maxime et perspiciatis et vel."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Commodi."], ["published", true], ["slug", "neque-voluptatum-44"], ["title", "Quia provident aspernatur."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test46' OR lower(name) = 'rspec46' OR lower(name) = 'ruby46' OR lower(name) = '#rails46') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test46"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby46"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails46"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-et-45' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 75], ["blog_id", 1], ["body", "Autem non consequuntur atque optio. Officiis unde dolor. Laborum magni nihil ipsum. Illo a eos natus. Aut veniam ipsam sequi laborum illo. Et est sit dolores hic rerum vitae. Dolorum vero dolorem dolor temporibus."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Optio quaerat ut tempore facere."], ["published", true], ["slug", "qui-et-45"], ["title", "Odit deleniti dolores veniam."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test47' OR lower(name) = 'rspec47' OR lower(name) = 'ruby47' OR lower(name) = '#rails47') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test47' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails47"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'est-sapiente-46' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 76], ["blog_id", 1], ["body", "Et corrupti sint ut molestias eaque et. Voluptatum praesentium nihil. Quos nobis provident cum sit. Nihil rerum et voluptas in perferendis nisi. Nostrum in et vero aut. Sit atque exercitationem sapiente minima tempora."], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["excerpt", "Aspernatur."], ["published", true], ["slug", "est-sapiente-46"], ["title", "Adipisci velit et nemo."], ["updated_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test48' OR lower(name) = 'rspec48' OR lower(name) = 'ruby48' OR lower(name) = '#rails48') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails48"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:35 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'neque-et-47' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 77], ["blog_id", 1], ["body", "Soluta repellendus illum cumque ipsa nihil provident facere. Cumque perferendis voluptatem voluptates eligendi magni. Et quos molestias voluptatem voluptas laboriosam. Omnis vel odit nihil sit rerum. Est animi culpa est iusto quasi. Dicta quia id dolorum dolor iusto. Enim nesciunt eum."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Culpa dolor quas non dicta sit."], ["published", true], ["slug", "neque-et-47"], ["title", "Explicabo blanditiis aut."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test49' OR lower(name) = 'rspec49' OR lower(name) = 'ruby49' OR lower(name) = '#rails49') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test49' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails49"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'molestias-necessitatibus-48' LIMIT 1 SQL (37.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 78], ["blog_id", 1], ["body", "Magnam eveniet sed aut velit eum doloremque. Consequatur natus laudantium molestiae. Id nobis aut qui cum accusamus ullam. Quos reiciendis exercitationem dicta. Velit quod tenetur pariatur quia. Rerum quas soluta. Sed iure iusto voluptas quod."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Nobis labore veritatis."], ["published", true], ["slug", "molestias-necessitatibus-48"], ["title", "Quod iure earum aspernatur aut animi possimus."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test50' OR lower(name) = 'rspec50' OR lower(name) = 'ruby50' OR lower(name) = '#rails50') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test50' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails50"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'maiores-ipsam-49' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 79], ["blog_id", 1], ["body", "Doloremque soluta fuga et molestias. Mollitia sed rerum ut. Quia tempora vel unde qui. Accusamus fugit eveniet. Non quam sint ut. Mollitia neque sit blanditiis quae ducimus. Sit voluptatem quos."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Sed ipsa corporis deserunt reprehenderit occaecati."], ["published", true], ["slug", "maiores-ipsam-49"], ["title", "Aliquam eaque sit."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test51' OR lower(name) = 'rspec51' OR lower(name) = 'ruby51' OR lower(name) = '#rails51') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails51"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-in-50' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 80], ["blog_id", 1], ["body", "Reprehenderit nulla officia laboriosam incidunt ipsum dicta. Omnis quibusdam dolorem sit earum qui. Qui inventore iure cumque id autem maxime. Qui similique cumque nobis. Optio non in est."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Labore enim."], ["published", true], ["slug", "qui-in-50"], ["title", "Repudiandae molestias tempora."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test52' OR lower(name) = 'rspec52' OR lower(name) = 'ruby52' OR lower(name) = '#rails52') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby52"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails52"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptatibus-dolores-51' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 81], ["blog_id", 1], ["body", "Omnis qui ut excepturi magni quia expedita hic. Et quo fuga blanditiis ad non. Voluptas quod nemo aspernatur soluta in. Debitis perspiciatis rem. Rerum molestias est mollitia minus accusamus nihil qui. Nihil quia aliquam."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Ullam."], ["published", true], ["slug", "voluptatibus-dolores-51"], ["title", "Eveniet maiores culpa sed dolores."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test53' OR lower(name) = 'rspec53' OR lower(name) = 'ruby53' OR lower(name) = '#rails53') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails53"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'laboriosam-non-52' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 82], ["blog_id", 1], ["body", "Fuga similique et. Amet aut ratione ipsum. Maiores eum repellendus tenetur est placeat. Ipsam fugiat id corrupti sint nobis. Omnis inventore optio veniam qui culpa molestiae ipsa. Dolore nostrum delectus deleniti. Quibusdam architecto nemo ipsam quod quos."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Eaque sit."], ["published", true], ["slug", "laboriosam-non-52"], ["title", "Unde veniam amet dolores."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test54' OR lower(name) = 'rspec54' OR lower(name) = 'ruby54' OR lower(name) = '#rails54') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails54"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'velit-ducimus-53' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 83], ["blog_id", 1], ["body", "Qui quia voluptatibus accusamus delectus ea. Maiores enim soluta enim. Sint aut eum cumque voluptatum beatae. Maxime inventore est deleniti saepe et. At facere dolor a quia nulla velit. Excepturi veniam explicabo eaque alias."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Consequatur quo ut eaque aliquid."], ["published", true], ["slug", "velit-ducimus-53"], ["title", "Voluptates nemo rerum hic unde sit."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test55' OR lower(name) = 'rspec55' OR lower(name) = 'ruby55' OR lower(name) = '#rails55') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails55"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'mollitia-ullam-54' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 84], ["blog_id", 1], ["body", "Quo odit eum dolorem nobis iure. Quaerat odit at et cum beatae et consequatur. Perferendis voluptatem nihil eum. Pariatur repudiandae ullam rerum. Autem praesentium rerum ut qui. Aspernatur molestiae non enim et quam quos."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Reprehenderit eos."], ["published", true], ["slug", "mollitia-ullam-54"], ["title", "Dolorem sit iure amet eum et."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ipsam-quas-55' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 85], ["blog_id", 1], ["body", "Nam non illum dolorum ducimus voluptatem in nostrum. Accusamus dolorem totam. Ut debitis beatae quo. Eos esse aliquid distinctio. Quia fugit quis perspiciatis. Esse earum est ducimus ut excepturi."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Minima."], ["published", true], ["slug", "ipsam-quas-55"], ["title", "Voluptatem velit omnis adipisci a est aspernatur."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_568017a ON posts_taggings_568017a.taggable_id = almanac_posts.id AND posts_taggings_568017a.taggable_type = 'Almanac::Post' AND posts_taggings_568017a.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 86], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["description", "Reprehenderit deserunt facilis ut. Deserunt et dolores voluptatem. Maiores voluptas fuga accusamus. Esse voluptatem soluta. Rerum ullam eum consectetur."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sapiente qui sequi eum minus ab consequatur."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'possimus-blanditiis-56' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 87], ["blog_id", 1], ["body", "Maiores animi quo perspiciatis perferendis voluptates qui. Recusandae consequatur quo sint aut. Iure vel aut. Omnis impedit qui animi at iure voluptates. Voluptatem beatae dolorem non autem. Qui repellendus et autem reprehenderit earum nihil."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Explicabo soluta enim dignissimos numquam dolores."], ["published", true], ["slug", "possimus-blanditiis-56"], ["title", "Mollitia doloribus nesciunt et nobis."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test56' OR lower(name) = 'rspec56' OR lower(name) = 'ruby56' OR lower(name) = '#rails56') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test56"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby56' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails56"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-qui-57' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 88], ["blog_id", 1], ["body", "Et quidem non in veritatis. Odio qui minus voluptates dicta. Earum vel et dolorem ut dolor odit unde. Ut vitae eligendi et. Provident et ducimus voluptates ut."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Sit et debitis vel voluptatem."], ["published", true], ["slug", "et-qui-57"], ["title", "Distinctio optio molestiae sapiente qui ratione et ea."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test57' OR lower(name) = 'rspec57' OR lower(name) = 'ruby57' OR lower(name) = '#rails57') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test57' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails57"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dicta-eligendi-58' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 89], ["blog_id", 1], ["body", "Quia ad voluptate. Ea omnis id. Sequi quia corporis cum aut qui. Ratione at eos ut eaque dolore. Deleniti voluptas est repellat aut. Harum officiis totam quod iure voluptatem atque voluptatem. Eum reiciendis quis architecto occaecati exercitationem."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Ipsa maxime laudantium nihil quia ut."], ["published", true], ["slug", "dicta-eligendi-58"], ["title", "Nulla soluta laudantium ipsa aliquid et."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test58' OR lower(name) = 'rspec58' OR lower(name) = 'ruby58' OR lower(name) = '#rails58') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails58"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'pariatur-aspernatur-59' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 90], ["blog_id", 1], ["body", "Iste quos vel aut dolore. Velit ad quia odio. In et et recusandae rem numquam eaque. Fugit et eaque et eum amet. Dolores quia ea."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Unde quae similique."], ["published", false], ["slug", "pariatur-aspernatur-59"], ["title", "Est ducimus qui voluptatem ad suscipit quae sapiente."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test59' OR lower(name) = 'rspec59' OR lower(name) = 'ruby59' OR lower(name) = '#rails59') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test59' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails59"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'similique-voluptas-60' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 91], ["blog_id", 1], ["body", "Iste placeat a dignissimos sed ut quaerat illo. Porro dolorem esse rerum. Dignissimos repudiandae dolore nisi consequatur. Non omnis molestiae. Et nulla inventore saepe soluta eveniet voluptates. Illo sit rerum dignissimos."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Illum natus impedit aliquid amet beatae."], ["published", false], ["slug", "similique-voluptas-60"], ["title", "Sit accusantium adipisci."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test60' OR lower(name) = 'rspec60' OR lower(name) = 'ruby60' OR lower(name) = '#rails60') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails60"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-quisquam-61' LIMIT 1 SQL (38.7ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 92], ["blog_id", 1], ["body", "Enim pariatur hic quae et vero. Cupiditate voluptatem et optio. Dolor aperiam et totam sed cupiditate. Assumenda sint omnis. Libero quos temporibus excepturi possimus officia ab quaerat. Ea non omnis fugiat. Adipisci iste veritatis molestiae est dolorem."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Sed qui voluptatem architecto."], ["published", false], ["slug", "et-quisquam-61"], ["title", "Mollitia quasi blanditiis omnis ab accusamus eius."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test61' OR lower(name) = 'rspec61' OR lower(name) = 'ruby61' OR lower(name) = '#rails61') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test61' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails61"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f'  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.6ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 93], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["description", "Et accusantium et. Necessitatibus facilis quibusdam. Aut ut aspernatur reprehenderit. At blanditiis minus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Eum illo sequi ut soluta expedita."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 94], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["description", "Totam reprehenderit occaecati enim odio commodi. Sit esse sequi inventore ut necessitatibus tempore excepturi. Sit occaecati nesciunt et. Nam ea totam voluptatibus qui beatae voluptatem. Ut mollitia dignissimos excepturi ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ut voluptates rerum alias aut tempora dolorum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mark@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mark@example.net"], ["encrypted_password", "$2a$04$Z7UlBtCxeQxFYft7bDFGLObpg2xJDQSdT.ov1HFOShncEJNpgJMsm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 97], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["description", "Libero eum suscipit magni maiores illo qui. Eligendi fugiat id et hic inventore impedit quia. Sit reprehenderit excepturi sit dignissimos dolorem laborum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolorum qui molestiae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"quo-occaecati-62", "excerpt"=>"Ex non natus.", "body"=>"Aut quae alias. Modi ex odit quod repudiandae perferendis repellendus. Eligendi consequatur alias doloremque. Iste voluptas molestias. Repellendus voluptatem culpa. Dolores ipsam ad reprehenderit culpa voluptatem.", "published"=>true, "tag_list"=>"common,test62,rspec62,ruby62,#rails62", "author_id"=>"98", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quo-occaecati-62' LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 25ms (Views: 14.1ms | ActiveRecord: 0.5ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'barney.kautzer@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "barney.kautzer@example.org"], ["encrypted_password", "$2a$04$GJfZ2AOrN755SR2Wo7nM4uO0GH0ukABXKuPiIWR43bf4lIGNmt91K"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 99], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["description", "Laboriosam est impedit explicabo qui ducimus laborum sunt. Modi eum similique. Nisi itaque assumenda enim ut reiciendis. Et reiciendis repudiandae molestias unde fugit et veniam. Corrupti qui a cupiditate explicabo eum itaque voluptatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Modi eligendi."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"unde-blanditiis-63", "excerpt"=>"Repudiandae aut alias eveniet voluptates doloremque.", "body"=>"Laborum exercitationem qui autem id fugit omnis consequuntur. Vel et culpa repudiandae expedita. Neque hic consequatur. Placeat quo qui asperiores. Est fugiat enim id repellat molestiae qui aspernatur.", "published"=>true, "tag_list"=>"common,test63,rspec63,ruby63,#rails63", "author_id"=>"100", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'unde-blanditiis-63' LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 1.4ms | ActiveRecord: 0.4ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mark@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mark@example.net"], ["encrypted_password", "$2a$04$d89elPJmPZYcP1B6rWUNaeWnQtYSKO8a3GqzImFnmGASIqMH5zCPC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 101], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["description", "Libero eum suscipit magni maiores illo qui. Eligendi fugiat id et hic inventore impedit quia. Sit reprehenderit excepturi sit dignissimos dolorem laborum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolorum qui molestiae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Sunt eos et aperiam aut sit.", "slug"=>"voluptate-molestiae-64", "excerpt"=>"Quaerat et quo et.", "body"=>"Voluptatem dolores debitis voluptatem. Vero mollitia accusamus quae rerum iusto. Neque officia voluptatem quibusdam repudiandae iusto molestias sint. Et ea porro qui. Architecto ea suscipit autem error sunt. Reiciendis ut harum tenetur dolorem vel laudantium et.", "published"=>true, "tag_list"=>"common,test64,rspec64,ruby64,#rails64", "author_id"=>"102", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptate-molestiae-64' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Voluptatem dolores debitis voluptatem. Vero mollitia accusamus quae rerum iusto. Neque officia voluptatem quibusdam repudiandae iusto molestias sint. Et ea porro qui. Architecto ea suscipit autem error sunt. Reiciendis ut harum tenetur dolorem vel laudantium et."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Quaerat et quo et."], ["published", true], ["slug", "voluptate-molestiae-64"], ["title", "Sunt eos et aperiam aut sit."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test64' OR lower(name) = 'rspec64' OR lower(name) = 'ruby64' OR lower(name) = '#rails64') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test64"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails64"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 28ms (ActiveRecord: 2.4ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'sylvia_bradtke@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "sylvia_bradtke@example.org"], ["encrypted_password", "$2a$04$nW7VOKT4BprsPkSkiTJLV.RMHDTz74BMXEZdXaelfqmqH7M0MceRy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 103], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["description", "Modi eum similique. Nisi itaque assumenda enim ut reiciendis. Et reiciendis repudiandae molestias unde fugit et veniam. Corrupti qui a cupiditate explicabo eum itaque voluptatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Molestiae est omnis libero."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Itaque et id non quasi doloremque commodi.", "slug"=>"aut-dolor-65", "excerpt"=>"Laboriosam.", "body"=>"Qui facere quae provident ut. Neque hic consequatur. Placeat quo qui asperiores. Est fugiat enim id repellat molestiae qui aspernatur. Repellendus sint odio pariatur similique id et laboriosam. Magni eum quidem sed optio. Reprehenderit vero laborum officia earum inventore molestias sapiente.", "published"=>true, "tag_list"=>"common,test65,rspec65,ruby65,#rails65", "author_id"=>"104", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-dolor-65' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Qui facere quae provident ut. Neque hic consequatur. Placeat quo qui asperiores. Est fugiat enim id repellat molestiae qui aspernatur. Repellendus sint odio pariatur similique id et laboriosam. Magni eum quidem sed optio. Reprehenderit vero laborum officia earum inventore molestias sapiente."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Laboriosam."], ["published", true], ["slug", "aut-dolor-65"], ["title", "Itaque et id non quasi doloremque commodi."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test65' OR lower(name) = 'rspec65' OR lower(name) = 'ruby65' OR lower(name) = '#rails65') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test65"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec65"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby65"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails65"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.3ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 66ms (ActiveRecord: 2.7ms)  (0.0ms) SELECT COUNT(*) FROM "almanac_posts"  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mark@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mark@example.net"], ["encrypted_password", "$2a$04$RRpnh29NwwnUP16tBOKha.BnxK/mSkrQXMjxHnlMDksvuOg.fWq0O"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 105], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["description", "Libero eum suscipit magni maiores illo qui. Eligendi fugiat id et hic inventore impedit quia. Sit reprehenderit excepturi sit dignissimos dolorem laborum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolorum qui molestiae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptate-molestiae-66' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 106], ["blog_id", 1], ["body", "Voluptatem dolores debitis voluptatem. Vero mollitia accusamus quae rerum iusto. Neque officia voluptatem quibusdam repudiandae iusto molestias sint. Et ea porro qui. Architecto ea suscipit autem error sunt. Reiciendis ut harum tenetur dolorem vel laudantium et."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Quaerat et quo et."], ["published", true], ["slug", "voluptate-molestiae-66"], ["title", "Sunt eos et aperiam aut sit."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test66' OR lower(name) = 'rspec66' OR lower(name) = 'ruby66' OR lower(name) = '#rails66') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails66"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."post_id" = 1 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 34ms (ActiveRecord: 1.3ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'sylvia_bradtke@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "sylvia_bradtke@example.org"], ["encrypted_password", "$2a$04$Fu69O23TmIcmXD8pdkHeXOHusGxiIxpItVAc/v9dJyFn1Bv2DW/za"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 107], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["description", "Modi eum similique. Nisi itaque assumenda enim ut reiciendis. Et reiciendis repudiandae molestias unde fugit et veniam. Corrupti qui a cupiditate explicabo eum itaque voluptatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Molestiae est omnis libero."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-dolor-67' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 108], ["blog_id", 1], ["body", "Qui facere quae provident ut. Neque hic consequatur. Placeat quo qui asperiores. Est fugiat enim id repellat molestiae qui aspernatur. Repellendus sint odio pariatur similique id et laboriosam. Magni eum quidem sed optio. Reprehenderit vero laborum officia earum inventore molestias sapiente."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Laboriosam."], ["published", true], ["slug", "aut-dolor-67"], ["title", "Itaque et id non quasi doloremque commodi."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test67' OR lower(name) = 'rspec67' OR lower(name) = 'ruby67' OR lower(name) = '#rails67') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec67"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby67"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails67"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_posts" Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."post_id" = 1 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 11ms (ActiveRecord: 0.9ms)  (0.0ms) SELECT COUNT(*) FROM "almanac_posts"  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jeff_kohler@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jeff_kohler@example.org"], ["encrypted_password", "$2a$04$fQK.BoyZk1IjK4Dyrg3BB.qx8rcfleiULpw5uxMZaGGk91lAIxl5e"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 109], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["description", "Voluptatem dolore quia ut aut quis. Quis totam aut. Enim velit eum quia recusandae numquam libero voluptatibus. Qui nobis inventore recusandae ea."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Id distinctio rerum eos neque."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'est-dicta-68' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 110], ["blog_id", 1], ["body", "Id aperiam in id. Reiciendis velit laudantium. Tempora perspiciatis quasi aut commodi. Culpa reprehenderit minima ea. Assumenda voluptatem dicta nam eum. Dignissimos pariatur et labore quibusdam."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Adipisci dolorem et dolor aut."], ["published", true], ["slug", "est-dicta-68"], ["title", "Eos nobis aperiam quia."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test68' OR lower(name) = 'rspec68' OR lower(name) = 'ruby68' OR lower(name) = '#rails68') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby68"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails68"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-id-69' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 111], ["blog_id", 1], ["body", "Ut dolores nihil tempore animi fuga delectus expedita. Exercitationem aliquid et. Atque ut at a optio cupiditate. Et quae dolor eveniet quia magni. Culpa maiores asperiores sit. Aliquam nihil laborum praesentium et."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Aliquam eligendi veritatis hic."], ["published", true], ["slug", "aut-id-69"], ["title", "Impedit fugit optio hic deleniti ipsam."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test69' OR lower(name) = 'rspec69' OR lower(name) = 'ruby69' OR lower(name) = '#rails69') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test69' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec69"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby69"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails69"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-at-70' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 112], ["blog_id", 1], ["body", "Repellendus et voluptas natus autem dolore dolorum. Porro unde dicta officia ullam. Quae et aut suscipit tempora consequuntur laudantium. Minus doloribus voluptatum eos assumenda. Commodi blanditiis reiciendis."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Sed dolorem reprehenderit."], ["published", true], ["slug", "et-at-70"], ["title", "Minus est ut iusto cupiditate ut dignissimos."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test70' OR lower(name) = 'rspec70' OR lower(name) = 'ruby70' OR lower(name) = '#rails70') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test70' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails70"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'libero-consequatur-71' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 113], ["blog_id", 1], ["body", "Voluptas quae sint et molestiae aliquid. Qui quam et enim ut velit eum. Ut doloribus nihil. Nihil et sed dolor et libero nemo quisquam. Sequi laboriosam sunt repellendus magni veniam."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Animi fugit voluptatem voluptas."], ["published", true], ["slug", "libero-consequatur-71"], ["title", "Voluptatem ut amet quas molestiae est quod."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test71' OR lower(name) = 'rspec71' OR lower(name) = 'ruby71' OR lower(name) = '#rails71') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test71' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby71"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails71"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consequatur-rem-72' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 114], ["blog_id", 1], ["body", "Voluptatibus aliquam labore. Repellendus explicabo et quia quisquam. Quis eum et similique ea. Repellat incidunt dolorem quibusdam magnam ut veritatis. Consequatur recusandae ut harum facilis maiores beatae et. Reiciendis eos vitae et modi minima minus nam. Occaecati delectus quaerat libero voluptates qui."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Impedit omnis veniam optio aut."], ["published", true], ["slug", "consequatur-rem-72"], ["title", "Quia ea vitae excepturi vero deserunt."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test72' OR lower(name) = 'rspec72' OR lower(name) = 'ruby72' OR lower(name) = '#rails72') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test72' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails72"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 8ms (Views: 2.1ms | ActiveRecord: 0.1ms) Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'weston@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "weston@example.net"], ["encrypted_password", "$2a$04$Paz0vcT7Yt3wo89p22J2BOHgfbVL6CN/QjAopUDSUBOTvpRo4RrwW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 115], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["description", "Rerum dolorum ipsa assumenda dolorem veniam nesciunt accusamus. Qui mollitia deserunt. Accusamus in vitae consequuntur et."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Eos qui expedita atque exercitationem corporis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'emory_lehner@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "emory_lehner@example.com"], ["encrypted_password", "$2a$04$9I4OO5uZv8laKpn52ekAxOr2xBpgWEZWXXt07pho4SFMnmUJKceJu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 116], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["description", "Dolorem omnis ut id consequatur et. Ratione ipsam vero error voluptate necessitatibus. Vero totam nesciunt cum. Suscipit expedita dolorem quia qui possimus autem veritatis. Est ratione explicabo optio aut aut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Nostrum ipsam totam magnam inventore aperiam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quis-voluptas-73' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 117], ["blog_id", 1], ["body", "Dolor vero dolorem aperiam cum omnis dolorum dolores. Rerum ratione nam voluptates voluptatem doloremque sit eos. Nostrum placeat dolores provident ut sunt. Consequatur esse et rerum repudiandae. Porro sed necessitatibus. Et quia esse."], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["excerpt", "Repudiandae labore tenetur aut veritatis."], ["published", false], ["slug", "quis-voluptas-73"], ["title", "Vel rem ut ullam aut unde."], ["updated_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test73' OR lower(name) = 'rspec73' OR lower(name) = 'ruby73' OR lower(name) = '#rails73') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails73"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:36 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'asperiores-quia-74' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 118], ["blog_id", 1], ["body", "Labore recusandae omnis veritatis soluta. Quisquam dolores possimus aut necessitatibus veritatis quia sunt. Est debitis labore quod praesentium est. Sequi asperiores eum. Dicta ut voluptatem qui."], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["excerpt", "Exercitationem."], ["published", false], ["slug", "asperiores-quia-74"], ["title", "Dolor tenetur ipsam eos repudiandae."], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test74' OR lower(name) = 'rspec74' OR lower(name) = 'ruby74' OR lower(name) = '#rails74') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test74' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec74"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails74"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'recusandae-vel-75' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 119], ["blog_id", 1], ["body", "Optio saepe rerum debitis impedit enim temporibus. Impedit aperiam aspernatur placeat. Ullam esse maxime excepturi molestiae accusamus vel vitae. Delectus ut dolor. Autem molestiae libero aut perferendis. Odit nihil quam ipsa consequatur et. Culpa debitis occaecati aspernatur et."], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["excerpt", "Ab."], ["published", false], ["slug", "recusandae-vel-75"], ["title", "Modi natus animi perspiciatis."], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test75' OR lower(name) = 'rspec75' OR lower(name) = 'ruby75' OR lower(name) = '#rails75') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test75"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails75"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 6ms (Views: 1.4ms | ActiveRecord: 0.1ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f' ORDER BY written_at DESC, id DESC  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mark@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mark@example.net"], ["encrypted_password", "$2a$04$dKDVYA9QWom1pw9w.UB8ougge3vRy8pjSS4vD84ipPek/FW6hDI/K"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 120], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["description", "Libero eum suscipit magni maiores illo qui. Eligendi fugiat id et hic inventore impedit quia. Sit reprehenderit excepturi sit dignissimos dolorem laborum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolorum qui molestiae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptate-molestiae-76' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 121], ["blog_id", 1], ["body", "Voluptatem dolores debitis voluptatem. Vero mollitia accusamus quae rerum iusto. Neque officia voluptatem quibusdam repudiandae iusto molestias sint. Et ea porro qui. Architecto ea suscipit autem error sunt. Reiciendis ut harum tenetur dolorem vel laudantium et."], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["excerpt", "Quaerat et quo et."], ["published", true], ["slug", "voluptate-molestiae-76"], ["title", "Sunt eos et aperiam aut sit."], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test76' OR lower(name) = 'rspec76' OR lower(name) = 'ruby76' OR lower(name) = '#rails76') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby76"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails76"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"earum-voluptates-77", "excerpt"=>"Eius.", "body"=>"Harum enim placeat repudiandae. Expedita numquam iure et minima animi est. Aliquid nulla accusantium est repellendus quas ut. Consequatur veniam quibusdam sed. Voluptate doloremque est ea repudiandae.", "published"=>true, "tag_list"=>"common,test77,rspec77,ruby77,#rails77", "author_id"=>"122", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'earum-voluptates-77' AND "almanac_posts"."id" != 1) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 14ms (Views: 2.3ms | ActiveRecord: 0.5ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'wilbert_schulist@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "wilbert_schulist@example.net"], ["encrypted_password", "$2a$04$fNGJqtk6GuRfAmJyIrGv4O.koF7VBBcPxWp0l77G8X37DN.NJPRoa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 123], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["description", "Praesentium ut saepe qui ipsa ut. Nobis sit consequuntur qui odit corporis. Ut qui qui perferendis veritatis voluptatum. Vel omnis reprehenderit consequatur et."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Repellat minus eveniet perspiciatis ut unde."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'assumenda-autem-78' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 124], ["blog_id", 1], ["body", "Expedita ut sed laudantium explicabo. Aperiam est aut consequatur. Consequatur exercitationem nemo laboriosam vero. Distinctio eaque aliquid sequi in accusamus accusantium. Qui qui sed in."], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["excerpt", "Fugiat ipsam qui laborum."], ["published", true], ["slug", "assumenda-autem-78"], ["title", "Rerum aliquam porro quisquam voluptatibus."], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test78' OR lower(name) = 'rspec78' OR lower(name) = 'ruby78' OR lower(name) = '#rails78') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test78"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec78"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby78"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails78"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"tempore-aperiam-79", "excerpt"=>"Nobis quidem.", "body"=>"In et alias ut atque quod et facilis. Veritatis et non aut veniam. Aut cum autem enim quae consequuntur tempora. Ducimus consectetur assumenda est id. Soluta impedit rerum ipsum magnam sed unde.", "published"=>true, "tag_list"=>"common,test79,rspec79,ruby79,#rails79", "author_id"=>"125", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'tempore-aperiam-79' AND "almanac_posts"."id" != 1) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 12ms (Views: 1.5ms | ActiveRecord: 0.6ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mark@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mark@example.net"], ["encrypted_password", "$2a$04$nBcX/ReI1M5YfNzTXR6dseQUEnTbrLY8xF0sS5ZeYJvJ3g8vGpAma"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 126], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["description", "Libero eum suscipit magni maiores illo qui. Eligendi fugiat id et hic inventore impedit quia. Sit reprehenderit excepturi sit dignissimos dolorem laborum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolorum qui molestiae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptate-molestiae-80' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 127], ["blog_id", 1], ["body", "Voluptatem dolores debitis voluptatem. Vero mollitia accusamus quae rerum iusto. Neque officia voluptatem quibusdam repudiandae iusto molestias sint. Et ea porro qui. Architecto ea suscipit autem error sunt. Reiciendis ut harum tenetur dolorem vel laudantium et."], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["excerpt", "Quaerat et quo et."], ["published", true], ["slug", "voluptate-molestiae-80"], ["title", "Sunt eos et aperiam aut sit."], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test80' OR lower(name) = 'rspec80' OR lower(name) = 'ruby80' OR lower(name) = '#rails80') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test80"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec80"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby80"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails80"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Est dolore placeat non dolor itaque tenetur veritatis.", "slug"=>"expedita-saepe-81", "excerpt"=>"Voluptatem.", "body"=>"Expedita numquam iure et minima animi est. Aliquid nulla accusantium est repellendus quas ut. Consequatur veniam quibusdam sed. Voluptate doloremque est ea repudiandae. Nihil velit dolor qui voluptate excepturi quibusdam aliquid.", "published"=>true, "tag_list"=>"common,test81,rspec81,ruby81,#rails81", "author_id"=>"128", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'expedita-saepe-81' AND "almanac_posts"."id" != 1) LIMIT 1  (0.2ms) UPDATE "almanac_posts" SET "title" = 'Est dolore placeat non dolor itaque tenetur veritatis.', "slug" = 'expedita-saepe-81', "excerpt" = 'Voluptatem.', "body" = 'Expedita numquam iure et minima animi est. Aliquid nulla accusantium est repellendus quas ut. Consequatur veniam quibusdam sed. Voluptate doloremque est ea repudiandae. Nihil velit dolor qui voluptate excepturi quibusdam aliquid.', "author_id" = 128, "updated_at" = '2012-12-28 04:44:37.263797' WHERE "almanac_posts"."id" = 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test81' OR lower(name) = 'rspec81' OR lower(name) = 'ruby81' OR lower(name) = '#rails81') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test81' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test81"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec81"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby81"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails81"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."tagger_type" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."context" = 'tags' AND "taggings"."tag_id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 32ms (ActiveRecord: 2.8ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'evangeline_ortiz@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "evangeline_ortiz@example.org"], ["encrypted_password", "$2a$04$mwzj9ZkaLE8wcTSXtKEqnObo8PBdS2gl6ZR4W783wxeLDeokcqbj6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 129], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["description", "Commodi dolorem non ut voluptas libero qui enim. Quam autem nihil rerum ipsam excepturi ad. Voluptas minima sapiente."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Praesentium ut saepe qui ipsa."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-perspiciatis-82' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 130], ["blog_id", 1], ["body", "Consequuntur ipsam vero quasi natus deleniti voluptatibus non. Illum voluptatem culpa voluptatibus ut exercitationem nam. Eum at soluta id quae voluptatem enim aspernatur. Atque aut saepe. Id incidunt fugit sint et. Voluptatem dicta ipsam dolor harum vero doloremque praesentium. Aliquid in enim aut alias impedit corrupti."], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["excerpt", "Delectus."], ["published", true], ["slug", "aut-perspiciatis-82"], ["title", "Qui ducimus est aut tempore."], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test82' OR lower(name) = 'rspec82' OR lower(name) = 'ruby82' OR lower(name) = '#rails82') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test82"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec82"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby82"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails82"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.4ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Testz", "slug"=>"iste-ex-83", "excerpt"=>"Iusto maxime sed.", "body"=>"Ut eius animi sunt aperiam. In qui nihil alias optio odio nobis dolorem. Consequuntur ipsum ullam et soluta qui ut sed. Ut quis enim aut rerum. Vel est sequi quam et et sed. Dicta eos soluta.", "published"=>true, "tag_list"=>"common,test83,rspec83,ruby83,#rails83", "author_id"=>"131", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'iste-ex-83' AND "almanac_posts"."id" != 1) LIMIT 1  (0.1ms) UPDATE "almanac_posts" SET "title" = 'Testz', "slug" = 'iste-ex-83', "excerpt" = 'Iusto maxime sed.', "body" = 'Ut eius animi sunt aperiam. In qui nihil alias optio odio nobis dolorem. Consequuntur ipsum ullam et soluta qui ut sed. Ut quis enim aut rerum. Vel est sequi quam et et sed. Dicta eos soluta.', "author_id" = 131, "updated_at" = '2012-12-28 04:44:37.332007' WHERE "almanac_posts"."id" = 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test83' OR lower(name) = 'rspec83' OR lower(name) = 'ruby83' OR lower(name) = '#rails83') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test83' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails83"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."tagger_type" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."context" = 'tags' AND "taggings"."tag_id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 29ms (ActiveRecord: 2.5ms) Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mark@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mark@example.net"], ["encrypted_password", "$2a$04$7sdOFiMC8yScBoiRN4xSE.inyRQgW6kE2UQcx5IZM3ntKfZ7qITRy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 132], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["description", "Libero eum suscipit magni maiores illo qui. Eligendi fugiat id et hic inventore impedit quia. Sit reprehenderit excepturi sit dignissimos dolorem laborum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolorum qui molestiae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 7ms (Views: 2.0ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jovani.beatty@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jovani.beatty@example.net"], ["encrypted_password", "$2a$04$uOK/KbTGFeHxUTZq2T1h9.CRioRaI156LLwajF93ftYBLKRTZX08e"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 133], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["description", "Sit hic non error. Inventore veniam ut aut aspernatur non amet. Neque ipsum aspernatur consequatur debitis ducimus consequatur voluptatibus. Quia unde in ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Voluptas nesciunt occaecati laboriosam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'officiis-voluptate-84' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 134], ["blog_id", 1], ["body", "Ut consequatur aspernatur adipisci quia dolorum. Et sequi laborum. Facere et reprehenderit exercitationem odit. Nisi itaque assumenda enim ut reiciendis. Et reiciendis repudiandae molestias unde fugit et veniam."], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["excerpt", "Sint molestiae qui temporibus asperiores architecto."], ["published", true], ["slug", "officiis-voluptate-84"], ["title", "Id quidem officiis reiciendis qui culpa in."], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test84' OR lower(name) = 'rspec84' OR lower(name) = 'ruby84' OR lower(name) = '#rails84') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails84"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'unde-blanditiis-85' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 135], ["blog_id", 1], ["body", "Laborum exercitationem qui autem id fugit omnis consequuntur. Vel et culpa repudiandae expedita. Neque hic consequatur. Placeat quo qui asperiores. Est fugiat enim id repellat molestiae qui aspernatur."], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["excerpt", "Repudiandae aut alias eveniet voluptates doloremque."], ["published", true], ["slug", "unde-blanditiis-85"], ["title", "Corrupti qui a cupiditate explicabo eum itaque voluptatibus."], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test85' OR lower(name) = 'rspec85' OR lower(name) = 'ruby85' OR lower(name) = '#rails85') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test85' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails85' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails85"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'autem-aut-86' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 136], ["blog_id", 1], ["body", "Consequuntur ipsam vero quasi natus deleniti voluptatibus non. Illum voluptatem culpa voluptatibus ut exercitationem nam. Eum at soluta id quae voluptatem enim aspernatur. Atque aut saepe. Id incidunt fugit sint et. Voluptatem dicta ipsam dolor harum vero doloremque praesentium. Aliquid in enim aut alias impedit corrupti."], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["excerpt", "Delectus."], ["published", true], ["slug", "autem-aut-86"], ["title", "Repellendus sint odio pariatur similique id et laboriosam."], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test86' OR lower(name) = 'rspec86' OR lower(name) = 'ruby86' OR lower(name) = '#rails86') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test86' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test86"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec86"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby86"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails86"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'corrupti-excepturi-87' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 137], ["blog_id", 1], ["body", "In qui nihil alias optio odio nobis dolorem. Consequuntur ipsum ullam et soluta qui ut sed. Ut quis enim aut rerum. Vel est sequi quam et et sed. Dicta eos soluta."], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["excerpt", "Eos autem."], ["published", true], ["slug", "corrupti-excepturi-87"], ["title", "Quidem quo qui veritatis nobis."], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test87' OR lower(name) = 'rspec87' OR lower(name) = 'ruby87' OR lower(name) = '#rails87') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test87' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails87"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'assumenda-eaque-88' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 138], ["blog_id", 1], ["body", "Omnis nisi illo dolorem molestiae aliquam. Veniam sed possimus consequatur et amet vitae reiciendis. Asperiores tempore id. Necessitatibus adipisci maiores deserunt commodi. Et quas voluptatem. Et quis itaque voluptatem eaque est."], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["excerpt", "Incidunt et sed nobis."], ["published", true], ["slug", "assumenda-eaque-88"], ["title", "Rem deserunt nisi."], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test88' OR lower(name) = 'rspec88' OR lower(name) = 'ruby88' OR lower(name) = '#rails88') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails88"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Parameters: {"tag_name"=>"common"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common') Completed 200 OK in 7ms (Views: 1.5ms | ActiveRecord: 0.2ms) Almanac::Post Load (0.3ms) SELECT "almanac_posts".* FROM "almanac_posts" JOIN taggings posts_taggings_77e02be ON posts_taggings_77e02be.taggable_id = almanac_posts.id AND posts_taggings_77e02be.taggable_type = 'Almanac::Post' AND posts_taggings_77e02be.tag_id = 1 WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mark@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mark@example.net"], ["encrypted_password", "$2a$04$JvU5k6FhodFuPhzQ.XPSTuAJkr7oSx80Wq3OHjFKml3sFyaVtg8jG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 139], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["description", "Libero eum suscipit magni maiores illo qui. Eligendi fugiat id et hic inventore impedit quia. Sit reprehenderit excepturi sit dignissimos dolorem laborum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolorum qui molestiae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Placeat eum molestiae sed qui et et doloribus. Sed nobis eos. Numquam mollitia nihil sed.", "author_id"=>"140"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 49ms (Views: 43.3ms | ActiveRecord: 0.3ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jeffry_bernier@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jeffry_bernier@example.net"], ["encrypted_password", "$2a$04$3Wl6zeocWUG16J9OCsA4KuvMML7cCSYp4fTHGHqJgwwWHFhADd/BK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 141], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["description", "Vero voluptas ut voluptatem assumenda. Id quidem officiis reiciendis qui culpa in. Commodi reprehenderit nemo dolorum dolor suscipit quia. Molestiae ut explicabo occaecati."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Neque ipsum aspernatur consequatur debitis ducimus consequatur."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Molestiae est omnis libero aut. Ex sed tempora voluptatem eum corrupti corporis qui. Aliquam nesciunt eum maiores et. Suscipit aliquam qui.", "author_id"=>"142"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 1.4ms | ActiveRecord: 0.2ms) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mark@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mark@example.net"], ["encrypted_password", "$2a$04$fYsVI6qTaa8bxxAk6rhX6OWeUr9wzuVTQBATlaweupyT.PQD3I5HG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 143], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["description", "Libero eum suscipit magni maiores illo qui. Eligendi fugiat id et hic inventore impedit quia. Sit reprehenderit excepturi sit dignissimos dolorem laborum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolorum qui molestiae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Sunt eos et aperiam aut.", "description"=>"Quaerat velit eaque alias debitis ut magni quis. Et dolores ut odio quas quaerat aliquid. Autem quae qui dolores tempore ratione enim. Expedita veniam saepe molestias.", "author_id"=>"144"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Sunt eos et aperiam aut.', "description" = 'Quaerat velit eaque alias debitis ut magni quis. Et dolores ut odio quas quaerat aliquid. Autem quae qui dolores tempore ratione enim. Expedita veniam saepe molestias.', "author_id" = 144, "updated_at" = '2012-12-28 04:44:37.636524' WHERE "almanac_blogs"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 5ms (ActiveRecord: 0.3ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jany@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jany@example.com"], ["encrypted_password", "$2a$04$4vtq2HIKDs2EweUz1nH.T.FivtvAhg5VS2KgJWW6n9g5STa.qx5/."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 145], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["description", "Numquam deleniti enim. Dolorum consequuntur animi ad eligendi. Unde non est dolores ut consectetur cum architecto. Enim voluptatem in sed maxime nesciunt natus. Voluptatem velit aut suscipit architecto commodi sed."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "A aut inventore voluptatem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Testz", "description"=>"Quis et aut. Voluptas veniam deleniti in tempore. Doloremque aut quia autem eum molestiae qui. Nobis sunt recusandae modi ipsam.", "author_id"=>"146"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Testz', "description" = 'Quis et aut. Voluptas veniam deleniti in tempore. Doloremque aut quia autem eum molestiae qui. Nobis sunt recusandae modi ipsam.', "author_id" = 146, "updated_at" = '2012-12-28 04:44:37.653718' WHERE "almanac_blogs"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 5ms (ActiveRecord: 0.3ms) Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mark@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mark@example.net"], ["encrypted_password", "$2a$04$RcoJsihBI.SoapKf0dQd0.yzZqVzjL9bG69bc9iEOA2a9BufhhQPS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Quia reprehenderit est omnis aut. Eaque laboriosam nihil. Animi et inventore nesciunt rerum non quisquam repudiandae. Iure necessitatibus sit qui expedita.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 8ms (Views: 2.2ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'rodrigo@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "rodrigo@example.net"], ["encrypted_password", "$2a$04$shyUjx7WDfwA6KOwxZESOuIapCOYAUh2NAhSpPmdcPzSbMcP5ABy6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs" Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Rerum architecto accusamus id eos impedit ut ut. Est magni suscipit est et dolorum cum. Sint dolorum magni dolorem eos sapiente amet. Similique animi at totam.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 1.4ms | ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mark@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mark@example.net"], ["encrypted_password", "$2a$04$M1EdGbeB2xKfJeUaVNlOCuTDMjvOqZZZpaBRsJ8gpCK3b3byIF1wi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Dolorum qui molestiae.", "description"=>"Libero eum suscipit magni maiores illo qui. Eligendi fugiat id et hic inventore impedit quia. Sit reprehenderit excepturi sit dignissimos dolorem laborum.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["description", "Libero eum suscipit magni maiores illo qui. Eligendi fugiat id et hic inventore impedit quia. Sit reprehenderit excepturi sit dignissimos dolorem laborum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolorum qui molestiae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 7ms (ActiveRecord: 0.9ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jovani.beatty@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jovani.beatty@example.net"], ["encrypted_password", "$2a$04$75B6Zc8PvZ4RESko1zoyxuqHW9KKbeG8UOB8N.QaxfZZahvZprF0K"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs" Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Voluptas nesciunt occaecati laboriosam.", "description"=>"Sit hic non error. Inventore veniam ut aut aspernatur non amet. Neque ipsum aspernatur consequatur debitis ducimus consequatur voluptatibus. Quia unde in ut.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00], ["description", "Sit hic non error. Inventore veniam ut aut aspernatur non amet. Neque ipsum aspernatur consequatur debitis ducimus consequatur voluptatibus. Quia unde in ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Voluptas nesciunt occaecati laboriosam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:44:37 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 6ms (ActiveRecord: 0.8ms)  (0.0ms) SELECT COUNT(*) FROM "almanac_blogs"  (0.4ms) rollback transaction Connecting to database specified by database.yml  (1.4ms) DELETE FROM "users";  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';  (1.0ms) DELETE FROM "almanac_posts";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_posts';  (1.2ms) DELETE FROM "almanac_images";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_images';  (1.1ms) DELETE FROM "tags";  (0.1ms) DELETE FROM sqlite_sequence where name = 'tags';  (0.8ms) DELETE FROM "taggings";  (0.1ms) DELETE FROM sqlite_sequence where name = 'taggings';  (0.8ms) DELETE FROM "almanac_comments";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_comments';  (0.5ms) DELETE FROM "almanac_blogs";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_blogs';  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (1.7ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (5.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 2], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["description", "Perferendis velit in aut suscipit autem. Inventore omnis accusantium. Dolores corrupti qui ipsam animi temporibus id id."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Voluptates aut necessitatibus sit qui ad."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'officiis-est-1' LIMIT 1 SQL (0.6ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Aut sunt sint occaecati quae. Consectetur velit ex tempora. Perspiciatis qui delectus ea sed hic. Necessitatibus tempore dolorem repellat non illum reiciendis porro. Impedit eaque quidem tenetur fugit maiores sed repellat. Omnis voluptatem dolor quo ea et vel corporis."], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["excerpt", "Impedit qui."], ["published", true], ["slug", "officiis-est-1"], ["title", "Perferendis adipisci omnis quis."], ["updated_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test1' OR lower(name) = 'rspec1' OR lower(name) = 'ruby1' OR lower(name) = '#rails1') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails1"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quod-molestiae-2' LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 5], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["description", "Voluptatem ut delectus. Reprehenderit molestiae nam alias dolorum quasi et nihil. Ducimus labore veniam non. Consequuntur labore et eum odio. Non pariatur sunt."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Voluptatem nesciunt."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'mollitia-dolore-3' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 7], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["description", "Deserunt omnis aperiam. Consequuntur expedita deleniti reprehenderit laboriosam qui ut. Provident et quasi et autem optio assumenda. Ullam voluptatem deleniti non totam aut ut voluptatem. Iure deleniti in id cupiditate."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Fugiat reiciendis voluptatem eaque aliquam aut."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptas-tempora-4' LIMIT 1  (0.4ms) rollback transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 9], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["description", "Quaerat qui voluptatum nesciunt dolore provident est voluptates. Libero pariatur nesciunt. Maxime repellendus earum quidem. Dolorem et eum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Nobis occaecati aut iusto reprehenderit corrupti."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-corrupti-5' LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 11], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["description", "Sapiente consequatur molestiae sit aliquam totam architecto quaerat. Saepe voluptatibus eum. Deserunt ad aspernatur et repudiandae debitis voluptatem. A et rerum molestias in."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Doloremque dignissimos."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 12], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["description", "Excepturi illum eos quisquam cum et. Nihil quod nostrum repudiandae incidunt dicta optio. Nam necessitatibus sed voluptate. Commodi molestiae qui inventore minus quo labore vitae. Amet atque quibusdam voluptas provident."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Placeat voluptas in."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'adipisci-porro-6' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 13], ["blog_id", 1], ["body", "Nisi error perferendis voluptas beatae recusandae et. Est voluptatem odit aperiam quas nesciunt et. Sequi placeat blanditiis. Vel ut unde voluptates voluptatem. Et sint provident sapiente ut voluptas possimus. Molestiae deserunt architecto praesentium est necessitatibus voluptatum iste."], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["excerpt", "Ut consequatur."], ["published", true], ["slug", "adipisci-porro-6"], ["title", "Repudiandae magni voluptatem quia recusandae itaque."], ["updated_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test7' OR lower(name) = 'rspec7' OR lower(name) = 'ruby7' OR lower(name) = '#rails7') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails7"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolores-ut-7' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 14], ["blog_id", 1], ["body", "Recusandae quia ut possimus facere adipisci est porro. Deleniti vel cumque. Sapiente nesciunt qui officia provident sed modi. Deserunt exercitationem possimus ipsa molestias. Dolorum aut voluptas omnis porro. Dolor veniam eos impedit soluta est accusamus. Suscipit deserunt vero ullam iste atque non perferendis."], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["excerpt", "Ut aliquid sint."], ["published", true], ["slug", "dolores-ut-7"], ["title", "Vel ut quos."], ["updated_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test8' OR lower(name) = 'rspec8' OR lower(name) = 'ruby8' OR lower(name) = '#rails8') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test8' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test8"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails8"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 16], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["description", "Sapiente eaque consectetur voluptatem necessitatibus. Aspernatur temporibus dicta et rerum magni. Rerum ad doloribus iusto. Voluptatem non dignissimos quidem minima id."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Eaque omnis iste non est."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolor-at-8' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 18], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["description", "Quae et quia natus. Praesentium quam dolores aliquam tempore. Est atque aut asperiores quis minus ex."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Reiciendis aut."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'maiores-quis-9' LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-voluptates-10' LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 21], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["description", "Voluptatem quas rem. Quasi doloremque dolore esse consequatur. Sequi quo tenetur tempora iure dolores. Recusandae praesentium laudantium dicta unde earum dolor."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Itaque odit dolor libero dolores eius facere."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 23], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["description", "Ut est cumque ea illum a in. Vitae incidunt quo magnam odio. Et accusantium et ab aut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quod hic."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-soluta-11' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 24], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["description", "Maiores amet voluptas enim. Inventore beatae voluptate repellendus. Fugiat ex quo facere assumenda eius harum. Voluptatem aut molestiae facilis voluptas rerum. Rerum pariatur assumenda eius impedit natus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Veritatis sapiente facere esse dolor."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'repellendus-voluptatum-12' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 25], ["blog_id", 1], ["body", "Asperiores dignissimos eveniet cum. Sed dolor consequatur et. Asperiores iste harum. Suscipit et quo nisi. Molestias optio ea consectetur."], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["excerpt", "Itaque cupiditate."], ["published", true], ["slug", "repellendus-voluptatum-12"], ["title", "Magnam numquam dolores mollitia qui officiis."], ["updated_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test14' OR lower(name) = 'rspec14' OR lower(name) = 'ruby14' OR lower(name) = '#rails14') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test14"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec14"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby14"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails14"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-porro-13' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 26], ["blog_id", 1], ["body", "Qui quis debitis ipsam enim illum nulla. Tempora sed amet dolores ut iusto ex. Enim dolores reprehenderit commodi non ad ratione. Corrupti quis pariatur id est. Harum fugit omnis sunt natus laboriosam tenetur ipsa. Officia non ea cum. Vitae eveniet distinctio voluptatem nesciunt rerum."], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["excerpt", "Occaecati velit."], ["published", true], ["slug", "aut-porro-13"], ["title", "Aut nobis corrupti aut."], ["updated_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test15' OR lower(name) = 'rspec15' OR lower(name) = 'ruby15' OR lower(name) = '#rails15') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test15' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test15"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec15"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby15"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails15"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-quam-14' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 27], ["blog_id", 1], ["body", "Vitae aliquid explicabo similique est rem. Voluptatibus voluptas harum repellendus. Quia ut sunt harum. Et consectetur qui et dolorem exercitationem. Sunt culpa aspernatur laudantium sed omnis error nulla."], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["excerpt", "Eum rerum dolorem."], ["published", true], ["slug", "aut-quam-14"], ["title", "Asperiores perferendis rerum voluptatem omnis iure."], ["updated_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test16' OR lower(name) = 'rspec16' OR lower(name) = 'ruby16' OR lower(name) = '#rails16') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test16' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test16"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec16"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby16"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails16"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quod-numquam-15' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 28], ["blog_id", 1], ["body", "Aperiam omnis aut unde sequi maxime odit a. Rerum fuga labore sint rem eaque sed enim. Dolorum aut neque in totam iste quidem. Et quis et hic quibusdam voluptatem soluta modi. Dicta ea quibusdam cum quo praesentium eos et."], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["excerpt", "Qui dolore aut reiciendis."], ["published", true], ["slug", "quod-numquam-15"], ["title", "Odio consequatur voluptas magnam qui est dolores."], ["updated_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test17' OR lower(name) = 'rspec17' OR lower(name) = 'ruby17' OR lower(name) = '#rails17') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test17"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec17"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby17"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails17"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'excepturi-aut-16' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 29], ["blog_id", 1], ["body", "Nostrum incidunt accusantium delectus ex. Dolores assumenda qui hic error repellendus. Sit laborum tempora sequi consequatur est omnis. Est tempora molestias ut veritatis aut. Illo et hic blanditiis iure itaque voluptas."], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["excerpt", "Cum itaque id quam quo distinctio."], ["published", false], ["slug", "excepturi-aut-16"], ["title", "Accusantium quasi quis molestiae enim libero sit."], ["updated_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test18' OR lower(name) = 'rspec18' OR lower(name) = 'ruby18' OR lower(name) = '#rails18') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test18' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test18"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec18' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec18"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby18' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby18"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails18' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails18"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'delectus-et-17' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 30], ["blog_id", 1], ["body", "Est exercitationem dolorum. Possimus voluptas labore dolores quisquam qui quam aliquam. Voluptatibus non commodi. Quam nihil necessitatibus. Aut dolor dignissimos."], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["excerpt", "Cupiditate enim laborum dolores nemo."], ["published", false], ["slug", "delectus-et-17"], ["title", "Optio rerum ut vitae."], ["updated_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test19' OR lower(name) = 'rspec19' OR lower(name) = 'ruby19' OR lower(name) = '#rails19') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test19"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec19"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby19"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails19"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolore-id-18' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 31], ["blog_id", 1], ["body", "Sint qui eum iusto omnis ut. Ut voluptas quasi reprehenderit. Dolor enim voluptas asperiores. Laborum necessitatibus soluta doloremque molestiae enim qui. Eius sed doloribus. Qui tempora repudiandae quae sunt eligendi illo."], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["excerpt", "Sed facere aliquam incidunt voluptatem."], ["published", false], ["slug", "dolore-id-18"], ["title", "Sit assumenda quis vitae maiores repellendus."], ["updated_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test20' OR lower(name) = 'rspec20' OR lower(name) = 'ruby20' OR lower(name) = '#rails20') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test20' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test20"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec20' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec20"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby20' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby20"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails20' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails20"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 't'  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 32], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["description", "Maiores amet voluptas enim. Inventore beatae voluptate repellendus. Fugiat ex quo facere assumenda eius harum. Voluptatem aut molestiae facilis voluptas rerum. Rerum pariatur assumenda eius impedit natus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Magnam veritatis qui."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'repellendus-voluptatum-19' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 33], ["blog_id", 1], ["body", "Asperiores dignissimos eveniet cum. Sed dolor consequatur et. Asperiores iste harum. Suscipit et quo nisi. Molestias optio ea consectetur."], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["excerpt", "Itaque cupiditate."], ["published", true], ["slug", "repellendus-voluptatum-19"], ["title", "Magnam numquam dolores mollitia qui officiis."], ["updated_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test21' OR lower(name) = 'rspec21' OR lower(name) = 'ruby21' OR lower(name) = '#rails21') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test21"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec21"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby21"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails21"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-porro-20' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 34], ["blog_id", 1], ["body", "Qui quis debitis ipsam enim illum nulla. Tempora sed amet dolores ut iusto ex. Enim dolores reprehenderit commodi non ad ratione. Corrupti quis pariatur id est. Harum fugit omnis sunt natus laboriosam tenetur ipsa. Officia non ea cum. Vitae eveniet distinctio voluptatem nesciunt rerum."], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["excerpt", "Occaecati velit."], ["published", true], ["slug", "aut-porro-20"], ["title", "Aut nobis corrupti aut."], ["updated_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test22' OR lower(name) = 'rspec22' OR lower(name) = 'ruby22' OR lower(name) = '#rails22') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test22' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test22"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec22"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby22"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails22"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:09 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-quam-21' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 35], ["blog_id", 1], ["body", "Vitae aliquid explicabo similique est rem. Voluptatibus voluptas harum repellendus. Quia ut sunt harum. Et consectetur qui et dolorem exercitationem. Sunt culpa aspernatur laudantium sed omnis error nulla."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Eum rerum dolorem."], ["published", true], ["slug", "aut-quam-21"], ["title", "Asperiores perferendis rerum voluptatem omnis iure."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test23' OR lower(name) = 'rspec23' OR lower(name) = 'ruby23' OR lower(name) = '#rails23') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test23"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec23"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby23"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails23"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quod-numquam-22' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 36], ["blog_id", 1], ["body", "Aperiam omnis aut unde sequi maxime odit a. Rerum fuga labore sint rem eaque sed enim. Dolorum aut neque in totam iste quidem. Et quis et hic quibusdam voluptatem soluta modi. Dicta ea quibusdam cum quo praesentium eos et."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Qui dolore aut reiciendis."], ["published", false], ["slug", "quod-numquam-22"], ["title", "Odio consequatur voluptas magnam qui est dolores."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test24' OR lower(name) = 'rspec24' OR lower(name) = 'ruby24' OR lower(name) = '#rails24') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test24"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec24"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby24"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails24"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'excepturi-aut-23' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 37], ["blog_id", 1], ["body", "Nostrum incidunt accusantium delectus ex. Dolores assumenda qui hic error repellendus. Sit laborum tempora sequi consequatur est omnis. Est tempora molestias ut veritatis aut. Illo et hic blanditiis iure itaque voluptas."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Cum itaque id quam quo distinctio."], ["published", false], ["slug", "excepturi-aut-23"], ["title", "Accusantium quasi quis molestiae enim libero sit."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test25' OR lower(name) = 'rspec25' OR lower(name) = 'ruby25' OR lower(name) = '#rails25') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test25"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec25"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby25"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails25"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'delectus-et-24' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 38], ["blog_id", 1], ["body", "Est exercitationem dolorum. Possimus voluptas labore dolores quisquam qui quam aliquam. Voluptatibus non commodi. Quam nihil necessitatibus. Aut dolor dignissimos."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Cupiditate enim laborum dolores nemo."], ["published", false], ["slug", "delectus-et-24"], ["title", "Optio rerum ut vitae."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test26' OR lower(name) = 'rspec26' OR lower(name) = 'ruby26' OR lower(name) = '#rails26') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails26"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f'  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 39], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["description", "Maiores amet voluptas enim. Inventore beatae voluptate repellendus. Fugiat ex quo facere assumenda eius harum. Voluptatem aut molestiae facilis voluptas rerum. Rerum pariatur assumenda eius impedit natus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Veritatis sapiente facere esse dolor."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'repellendus-voluptatum-25' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 40], ["blog_id", 1], ["body", "Asperiores dignissimos eveniet cum. Sed dolor consequatur et. Asperiores iste harum. Suscipit et quo nisi. Molestias optio ea consectetur."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Itaque cupiditate."], ["published", true], ["slug", "repellendus-voluptatum-25"], ["title", "Magnam numquam dolores mollitia qui officiis."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test27' OR lower(name) = 'rspec27' OR lower(name) = 'ruby27' OR lower(name) = '#rails27') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails27"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-porro-26' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 41], ["blog_id", 1], ["body", "Qui quis debitis ipsam enim illum nulla. Tempora sed amet dolores ut iusto ex. Enim dolores reprehenderit commodi non ad ratione. Corrupti quis pariatur id est. Harum fugit omnis sunt natus laboriosam tenetur ipsa. Officia non ea cum. Vitae eveniet distinctio voluptatem nesciunt rerum."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Occaecati velit."], ["published", true], ["slug", "aut-porro-26"], ["title", "Aut nobis corrupti aut."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test28' OR lower(name) = 'rspec28' OR lower(name) = 'ruby28' OR lower(name) = '#rails28') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test28' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test28"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec28"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby28"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails28"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-quam-27' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 42], ["blog_id", 1], ["body", "Vitae aliquid explicabo similique est rem. Voluptatibus voluptas harum repellendus. Quia ut sunt harum. Et consectetur qui et dolorem exercitationem. Sunt culpa aspernatur laudantium sed omnis error nulla."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Eum rerum dolorem."], ["published", true], ["slug", "aut-quam-27"], ["title", "Asperiores perferendis rerum voluptatem omnis iure."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test29' OR lower(name) = 'rspec29' OR lower(name) = 'ruby29' OR lower(name) = '#rails29') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails29"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quod-numquam-28' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 43], ["blog_id", 1], ["body", "Aperiam omnis aut unde sequi maxime odit a. Rerum fuga labore sint rem eaque sed enim. Dolorum aut neque in totam iste quidem. Et quis et hic quibusdam voluptatem soluta modi. Dicta ea quibusdam cum quo praesentium eos et."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Qui dolore aut reiciendis."], ["published", true], ["slug", "quod-numquam-28"], ["title", "Odio consequatur voluptas magnam qui est dolores."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test30' OR lower(name) = 'rspec30' OR lower(name) = 'ruby30' OR lower(name) = '#rails30') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails30"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'excepturi-aut-29' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 44], ["blog_id", 1], ["body", "Nostrum incidunt accusantium delectus ex. Dolores assumenda qui hic error repellendus. Sit laborum tempora sequi consequatur est omnis. Est tempora molestias ut veritatis aut. Illo et hic blanditiis iure itaque voluptas."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Cum itaque id quam quo distinctio."], ["published", true], ["slug", "excepturi-aut-29"], ["title", "Accusantium quasi quis molestiae enim libero sit."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test31' OR lower(name) = 'rspec31' OR lower(name) = 'ruby31' OR lower(name) = '#rails31') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails31"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'delectus-et-30' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 45], ["blog_id", 1], ["body", "Est exercitationem dolorum. Possimus voluptas labore dolores quisquam qui quam aliquam. Voluptatibus non commodi. Quam nihil necessitatibus. Aut dolor dignissimos."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Cupiditate enim laborum dolores nemo."], ["published", true], ["slug", "delectus-et-30"], ["title", "Optio rerum ut vitae."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test32' OR lower(name) = 'rspec32' OR lower(name) = 'ruby32' OR lower(name) = '#rails32') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails32"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolore-id-31' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 46], ["blog_id", 1], ["body", "Sint qui eum iusto omnis ut. Ut voluptas quasi reprehenderit. Dolor enim voluptas asperiores. Laborum necessitatibus soluta doloremque molestiae enim qui. Eius sed doloribus. Qui tempora repudiandae quae sunt eligendi illo."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Sed facere aliquam incidunt voluptatem."], ["published", true], ["slug", "dolore-id-31"], ["title", "Sit assumenda quis vitae maiores repellendus."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test33' OR lower(name) = 'rspec33' OR lower(name) = 'ruby33' OR lower(name) = '#rails33') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test33"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec33"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby33"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails33"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'excepturi-vero-32' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 47], ["blog_id", 1], ["body", "Nostrum qui dolores natus aliquam quisquam voluptatem. Qui recusandae ducimus. Velit vel excepturi maiores est aut. Tempore repellendus perferendis architecto sed eum qui. Officiis quod nulla pariatur et impedit id dolor."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Illum."], ["published", true], ["slug", "excepturi-vero-32"], ["title", "Tempore expedita ut et."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test34' OR lower(name) = 'rspec34' OR lower(name) = 'ruby34' OR lower(name) = '#rails34') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails34"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quisquam-et-33' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 48], ["blog_id", 1], ["body", "Qui beatae voluptatem. Aut et eveniet. Aspernatur fuga expedita culpa repudiandae qui tenetur. Magni et nihil omnis nam. Porro distinctio facere possimus. Temporibus modi explicabo. Sapiente praesentium excepturi enim atque et."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Id delectus sunt laborum."], ["published", true], ["slug", "quisquam-et-33"], ["title", "Eos id est excepturi."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test35' OR lower(name) = 'rspec35' OR lower(name) = 'ruby35' OR lower(name) = '#rails35') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails35"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'minima-et-34' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 49], ["blog_id", 1], ["body", "Dolore est omnis iste deserunt vel est. Nihil laboriosam sunt. Rerum repellat reiciendis pariatur. Et beatae aut placeat aut totam. Quo beatae iure iste. Et qui occaecati modi vitae."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Similique explicabo natus nobis impedit."], ["published", true], ["slug", "minima-et-34"], ["title", "Voluptas eaque vel."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test36' OR lower(name) = 'rspec36' OR lower(name) = 'ruby36' OR lower(name) = '#rails36') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test36"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec36"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby36"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails36"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nihil-ea-35' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 50], ["blog_id", 1], ["body", "Vero aperiam aut et earum veritatis incidunt molestias. Aut quod animi perferendis reiciendis. Possimus inventore magni vel quo eius cum. Minus enim sint voluptatum cumque. Ducimus assumenda minus deserunt commodi itaque. Enim expedita doloribus aut nesciunt blanditiis."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Magni nihil nesciunt optio quod."], ["published", true], ["slug", "nihil-ea-35"], ["title", "At minus pariatur saepe quo expedita suscipit iure."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quia-repellendus-36' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 51], ["blog_id", 1], ["body", "Aut et soluta unde labore rerum et. Recusandae quod et quia sint. Cum quis quae eius aut sit perspiciatis eos. Et inventore sed et id dolor est id. Molestiae est ipsam minima molestiae. Aperiam consequatur debitis. Ut assumenda eius doloribus officiis."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "In illum."], ["published", true], ["slug", "quia-repellendus-36"], ["title", "Ut dignissimos distinctio temporibus dicta consequatur."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_c0a8509 ON posts_taggings_c0a8509.taggable_id = almanac_posts.id AND posts_taggings_c0a8509.taggable_type = 'Almanac::Post' AND posts_taggings_c0a8509.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 52], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["description", "Nam rerum autem. Quam minima ipsa. Expedita unde eos impedit non laborum sit dolorem."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aperiam et blanditiis eveniet nulla."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sapiente-at-37' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 53], ["blog_id", 1], ["body", "Sunt est non laboriosam doloribus ad cum non. Minima et quo assumenda quaerat aut magnam. Sint reiciendis quasi consequatur maxime molestias. Ipsam impedit corporis rerum dignissimos. Magnam enim eos illum voluptatem quasi."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Autem sapiente omnis facere dolor."], ["published", true], ["slug", "sapiente-at-37"], ["title", "Minus non consectetur est voluptatem."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test37' OR lower(name) = 'rspec37' OR lower(name) = 'ruby37' OR lower(name) = '#rails37') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test37"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec37"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby37"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails37"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-non-38' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 54], ["blog_id", 1], ["body", "Omnis minima ut. Expedita qui quis qui autem qui porro. Est architecto dignissimos. Est enim molestias accusamus. Ut doloribus provident fugiat aliquam adipisci commodi autem. Ab error dolor asperiores iste. Sed possimus est et."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Cupiditate harum nihil."], ["published", true], ["slug", "aut-non-38"], ["title", "Dignissimos voluptates quia eveniet."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test38' OR lower(name) = 'rspec38' OR lower(name) = 'ruby38' OR lower(name) = '#rails38') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test38' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails38"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ipsum-amet-39' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 55], ["blog_id", 1], ["body", "Aliquam fugiat cum consequatur distinctio voluptatem dolorum. Saepe velit eaque et corrupti quidem similique nesciunt. Minima dolorum enim quo modi aperiam recusandae praesentium. Ut aspernatur dolores aut. Autem nesciunt porro quisquam."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Enim tempore sunt."], ["published", true], ["slug", "ipsum-amet-39"], ["title", "Quia nihil facilis."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test39' OR lower(name) = 'rspec39' OR lower(name) = 'ruby39' OR lower(name) = '#rails39') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test39' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test39"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec39"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby39"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails39"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'iure-eveniet-40' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 56], ["blog_id", 1], ["body", "Est totam dolorem odio aperiam quaerat officia. Odio doloremque similique perferendis. Inventore exercitationem deserunt accusantium rerum. Voluptates beatae et ratione error deleniti facere. Vel molestias iste quisquam sunt voluptate iure."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Ut totam aut ullam quibusdam consequatur."], ["published", true], ["slug", "iure-eveniet-40"], ["title", "Itaque provident libero sed."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test40' OR lower(name) = 'rspec40' OR lower(name) = 'ruby40' OR lower(name) = '#rails40') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test40"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec40"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby40"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails40"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-eligendi-41' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 57], ["blog_id", 1], ["body", "Doloribus nihil quibusdam eaque id. Ea repudiandae aperiam veritatis. A magnam corrupti ipsa eos placeat. Omnis iure est voluptatibus iusto earum corrupti. Excepturi ut in quod quia tempora sunt itaque. Nulla aliquid accusamus est voluptates et mollitia."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Expedita."], ["published", true], ["slug", "et-eligendi-41"], ["title", "Explicabo debitis ipsam aliquid tempore veritatis numquam."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test41' OR lower(name) = 'rspec41' OR lower(name) = 'ruby41' OR lower(name) = '#rails41') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test41"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec41"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby41"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails41"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'omnis-at-42' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 58], ["blog_id", 1], ["body", "Nihil sed velit qui. Dolor hic vel quae qui delectus. Sapiente qui harum est eaque perferendis modi ratione. Est eum mollitia. Voluptas vel eum dolores aut error veniam."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Et."], ["published", true], ["slug", "omnis-at-42"], ["title", "Ut est aut fuga atque consequuntur commodi."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test42' OR lower(name) = 'rspec42' OR lower(name) = 'ruby42' OR lower(name) = '#rails42') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test42' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails42"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptatibus-dolore-43' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 59], ["blog_id", 1], ["body", "Eos quisquam voluptatem aperiam ipsum quia qui itaque. Temporibus commodi aut dolores magnam. Laboriosam voluptatem deleniti labore. Voluptatem illum delectus et et aliquid. Commodi earum saepe voluptas exercitationem."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Commodi consectetur ut accusantium."], ["published", true], ["slug", "voluptatibus-dolore-43"], ["title", "Ut deleniti error rem est totam esse eaque."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test43' OR lower(name) = 'rspec43' OR lower(name) = 'ruby43' OR lower(name) = '#rails43') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test43"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec43"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby43"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails43"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'velit-esse-44' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 60], ["blog_id", 1], ["body", "Aliquid ut natus quibusdam molestias nulla ratione. Corporis quaerat ut quia amet et tenetur. Sequi nesciunt vel. Sit tempora rem et. Illo fuga error dolores."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Autem quo dolor quibusdam."], ["published", true], ["slug", "velit-esse-44"], ["title", "Quod illo velit vitae nisi non."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test44' OR lower(name) = 'rspec44' OR lower(name) = 'ruby44' OR lower(name) = '#rails44') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test44"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec44"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby44"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails44"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ratione-voluptatem-45' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 61], ["blog_id", 1], ["body", "Voluptate vitae quasi enim voluptas rerum nam. Optio sit qui architecto laboriosam voluptatibus non. Ipsam nam voluptatem ullam voluptas ut qui explicabo. Et laboriosam voluptatem et. Id nihil nesciunt."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Et fugit sed temporibus aliquam."], ["published", true], ["slug", "ratione-voluptatem-45"], ["title", "In rerum adipisci maxime debitis reiciendis pariatur."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test45' OR lower(name) = 'rspec45' OR lower(name) = 'ruby45' OR lower(name) = '#rails45') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test45"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec45"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby45"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails45"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nam-perferendis-46' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 62], ["blog_id", 1], ["body", "Enim omnis ut dolore. Quia omnis veritatis. In quaerat sed. Rerum optio at sit blanditiis nobis. Est illum similique."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Soluta."], ["published", true], ["slug", "nam-perferendis-46"], ["title", "Sed id exercitationem sit eligendi."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test46' OR lower(name) = 'rspec46' OR lower(name) = 'ruby46' OR lower(name) = '#rails46') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails46"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'asperiores-vitae-47' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 63], ["blog_id", 1], ["body", "Nam vitae voluptatem. Eius necessitatibus est non asperiores animi. Sit delectus et. Maiores harum quibusdam tempore quia et rerum temporibus. Maiores porro eaque vel sint sit. Reiciendis totam pariatur cupiditate. Voluptates non nisi."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Dolore."], ["published", false], ["slug", "asperiores-vitae-47"], ["title", "Accusamus praesentium beatae."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test47' OR lower(name) = 'rspec47' OR lower(name) = 'ruby47' OR lower(name) = '#rails47') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails47"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 42 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 42], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 43 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 43], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 44 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 44], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 45 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 45], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nobis-quia-48' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 64], ["blog_id", 1], ["body", "Est dolore enim earum optio dolorem. Tempore dolores voluptatem cumque recusandae. Aut et architecto sit culpa. Explicabo excepturi et quaerat sunt eos et. Et quibusdam laudantium nesciunt accusamus et."], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["excerpt", "Omnis sequi quia ducimus."], ["published", false], ["slug", "nobis-quia-48"], ["title", "Eos consectetur asperiores quibusdam."], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test48' OR lower(name) = 'rspec48' OR lower(name) = 'ruby48' OR lower(name) = '#rails48') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails48"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 1], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 46 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 46], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 47 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 47], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 48 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 48], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 49 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["tag_id", 49], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_9cf12bb ON posts_taggings_9cf12bb.taggable_id = almanac_posts.id AND posts_taggings_9cf12bb.taggable_type = 'Almanac::Post' AND posts_taggings_9cf12bb.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'june@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "june@example.org"], ["encrypted_password", "$2a$04$ejCLpqIt.5SUoMnzz7gFKeJvFXoz0yKwLlc1t5ioNGTEiFm4mI20."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs" Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Libero officiis consectetur sed harum nihil porro.", "description"=>"Natus aspernatur debitis consequuntur ut beatae quibusdam. Sunt possimus molestias. Exercitationem autem asperiores et quas.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["description", "Natus aspernatur debitis consequuntur ut beatae quibusdam. Sunt possimus molestias. Exercitationem autem asperiores et quas."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Libero officiis consectetur sed harum nihil porro."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 8ms (ActiveRecord: 1.0ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lilly_runte@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "lilly_runte@example.net"], ["encrypted_password", "$2a$04$t8HsGsBatJOepNlTcgTpGui4jfCyZGp7arXrOIKDMuX1hv81SR79O"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Est sequi molestias tempora libero.", "description"=>"Suscipit error ut dolorem. Fugit quaerat qui ipsam. Non et facere aut.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.6ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["description", "Suscipit error ut dolorem. Fugit quaerat qui ipsam. Non et facere aut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Est sequi molestias tempora libero."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 7ms (ActiveRecord: 1.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'june@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "june@example.org"], ["encrypted_password", "$2a$04$gDaaZX87KnXHtDNo88maTO9DdeAQ1uEl0of/VOiZh6tOt37NETq5e"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs" Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Molestiae sed aut nisi magnam velit dolore quisquam. Et voluptatum aut dolores vel. Odio ut atque blanditiis quo quibusdam voluptatem. Veniam atque nisi.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 21ms (Views: 14.2ms | ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jared@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jared@example.net"], ["encrypted_password", "$2a$04$JpC7BUBvZ/Lr/kh6GpyZK.Jr1JQYJJZfd7BJ0c7Vsi155eIYAWEwS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Est sequi molestias tempora libero fugit. Qui aut qui veritatis asperiores molestiae necessitatibus. Voluptas odit vel libero et recusandae sunt harum. In quae cumque hic magni aut qui. Expedita minima enim beatae sed adipisci.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 1.5ms | ActiveRecord: 0.3ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'june@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "june@example.org"], ["encrypted_password", "$2a$04$6LjAxfcVFGhDtd4F7kbND.vqoDqg6HsI/ki1aab61qT4H5Twdilhq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 65], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["description", "Natus aspernatur debitis consequuntur ut beatae quibusdam. Sunt possimus molestias. Exercitationem autem asperiores et quas."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Libero officiis consectetur sed harum nihil porro."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Testz", "description"=>"Vero est velit quo autem dolor in. Harum facere quasi nihil et odit. Temporibus consectetur illum labore ratione voluptas. Consequatur in quia reprehenderit qui voluptatum molestiae.", "author_id"=>"66"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Testz', "description" = 'Vero est velit quo autem dolor in. Harum facere quasi nihil et odit. Temporibus consectetur illum labore ratione voluptas. Consequatur in quia reprehenderit qui voluptatum molestiae.', "author_id" = 66, "updated_at" = '2012-12-28 04:46:10.941021' WHERE "almanac_blogs"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 7ms (ActiveRecord: 0.4ms) Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lexie.keler@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "lexie.keler@example.org"], ["encrypted_password", "$2a$04$dYjoiezB/veuVLfcOfOVVuPVm1dciloBzni9rJZWttwaKbRoRA4/e"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 67], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["description", "Repellat quis cumque voluptas fugit sint quia quo. In quae corrupti. Sed corporis eveniet enim iste et sed."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Est aut."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Id nihil impedit velit dolorem dolore possimus.", "description"=>"Dolorem vero sit. Consequatur nemo voluptatem. Natus accusantium odio officiis autem odit quas ipsum. Et ratione ex nisi aut.", "author_id"=>"68"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Id nihil impedit velit dolorem dolore possimus.', "description" = 'Dolorem vero sit. Consequatur nemo voluptatem. Natus accusantium odio officiis autem odit quas ipsum. Et ratione ex nisi aut.', "author_id" = 68, "updated_at" = '2012-12-28 04:46:10.960066' WHERE "almanac_blogs"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 5ms (ActiveRecord: 0.3ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'june@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "june@example.org"], ["encrypted_password", "$2a$04$sZ/3eY8sduS6wRetoCR5kuB7R4153q5TuGwNPgRvRAwAM9bnTnTAG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 69], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["description", "Natus aspernatur debitis consequuntur ut beatae quibusdam. Sunt possimus molestias. Exercitationem autem asperiores et quas."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Libero officiis consectetur sed harum nihil porro."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Vero est velit quo autem dolor in. Harum facere quasi nihil et odit. Temporibus consectetur illum labore ratione voluptas. Consequatur in quia reprehenderit qui voluptatum molestiae.", "author_id"=>"70"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 2.3ms | ActiveRecord: 0.2ms) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lexie.keler@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "lexie.keler@example.org"], ["encrypted_password", "$2a$04$3ICPkHbdGd315obtfL2wremm0FQIGlO4rCQosrjm.DJqXBZp7ZLZK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 71], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00], ["description", "Repellat quis cumque voluptas fugit sint quia quo. In quae corrupti. Sed corporis eveniet enim iste et sed."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Est aut."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Eligendi quam omnis quaerat odio debitis quod maiores. Dolorem vero sit. Consequatur nemo voluptatem. Natus accusantium odio officiis autem odit quas ipsum.", "author_id"=>"72"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 73], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["description", "Voluptatem in adipisci placeat expedita laboriosam. Distinctio quidem dolor sunt assumenda debitis facilis. Quo qui perspiciatis sapiente. Reiciendis est et necessitatibus non omnis et a. Blanditiis sit qui consequatur nisi eum voluptatem quae."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et officia aut fugiat quia consectetur."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 75], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["description", "Ab distinctio nostrum. Molestiae ea eum inventore optio. Sed culpa non at dolor sit. Qui non maiores aut ipsa."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Tempore temporibus rem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'june@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "june@example.org"], ["encrypted_password", "$2a$04$1J11D8lO4j.L/oaANOCUiOoR/V6pVw3qGMoGcfT2NBG9hqQAHtfcS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 78], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["description", "Reprehenderit consequatur nobis. Accusantium provident distinctio numquam sit accusamus ipsa. Laudantium ut quas. Rerum unde veniam facilis eum et qui ut. Libero id occaecati aliquam unde quia doloribus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Consequatur in quia reprehenderit qui voluptatum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'enim-accusantium-49' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 77], ["blog_id", 1], ["body", "Laboriosam est praesentium aut rerum. Et labore animi ut consectetur temporibus omnis laboriosam. Aut vero quibusdam dolore. Qui ullam animi nulla nisi ab sit omnis. Ut cupiditate quae reprehenderit vitae eaque sed."], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["excerpt", "Nesciunt fuga praesentium."], ["published", true], ["slug", "enim-accusantium-49"], ["title", "Libero officiis consectetur sed harum nihil porro adipisci."], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test49' OR lower(name) = 'rspec49' OR lower(name) = 'ruby49' OR lower(name) = '#rails49') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test49"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec49"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby49"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails49"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Earnest Parker DVM", "author_email"=>"melody.barrows@example.org", "body"=>"Corporis eveniet rerum aperiam. Maiores in voluptates non est autem. Quod sed debitis quibusdam quae."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "melody.barrows@example.org"], ["author_name", "Earnest Parker DVM"], ["body", "Corporis eveniet rerum aperiam. Maiores in voluptates non est autem. Quod sed debitis quibusdam quae."], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/enim-accusantium-49 Completed 302 Found in 19ms (ActiveRecord: 0.7ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"   (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'antonio@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "antonio@example.net"], ["encrypted_password", "$2a$04$Nz2HAsU2kaxFxk6g73Ezseq8t.0BIl8mc4rRCMRH/XMWo1wK/wsha"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 80], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["description", "Quia voluptas voluptatem occaecati quas fugit. Tenetur commodi nesciunt voluptates consectetur voluptas aut. Vitae ullam est. Eos omnis voluptatem autem sit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Similique distinctio blanditiis omnis corrupti."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quia-illo-50' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 79], ["blog_id", 1], ["body", "Maxime repellendus ex voluptatem. Quibusdam facere ut non ut. Odio deserunt et aperiam eligendi molestiae et omnis. Quas libero distinctio veritatis sequi ut alias perspiciatis. Quibusdam et et quidem cupiditate voluptas vero. Doloremque eos non impedit eveniet ut cumque similique. Excepturi similique quae ratione."], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["excerpt", "Non."], ["published", true], ["slug", "quia-illo-50"], ["title", "Maiores repudiandae enim deserunt recusandae asperiores quod accusamus."], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test50' OR lower(name) = 'rspec50' OR lower(name) = 'ruby50' OR lower(name) = '#rails50') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec50' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails50"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Mr. Randal Grady", "author_email"=>"levi.cain@example.org", "body"=>"Debitis quibusdam ipsam labore odit."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "levi.cain@example.org"], ["author_name", "Mr. Randal Grady"], ["body", "Debitis quibusdam ipsam labore odit."], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/quia-illo-50 Completed 302 Found in 7ms (ActiveRecord: 0.4ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'june@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "june@example.org"], ["encrypted_password", "$2a$04$FAarhVkm.33LsAZuCE0y5evjMXdk9yv.2SofuwR176oyaT7MQXB2W"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 82], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["description", "Reprehenderit consequatur nobis. Accusantium provident distinctio numquam sit accusamus ipsa. Laudantium ut quas. Rerum unde veniam facilis eum et qui ut. Libero id occaecati aliquam unde quia doloribus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Consequatur in quia reprehenderit qui voluptatum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'enim-accusantium-51' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 81], ["blog_id", 1], ["body", "Laboriosam est praesentium aut rerum. Et labore animi ut consectetur temporibus omnis laboriosam. Aut vero quibusdam dolore. Qui ullam animi nulla nisi ab sit omnis. Ut cupiditate quae reprehenderit vitae eaque sed."], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["excerpt", "Nesciunt fuga praesentium."], ["published", true], ["slug", "enim-accusantium-51"], ["title", "Libero officiis consectetur sed harum nihil porro adipisci."], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test51' OR lower(name) = 'rspec51' OR lower(name) = 'ruby51' OR lower(name) = '#rails51') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails51"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_comments"  Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Earnest Parker DVM", "author_email"=>"melody.barrows@example.org", "body"=>nil}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Redirected to http://test.host/almanac/enim-accusantium-51 Completed 302 Found in 8ms (ActiveRecord: 0.2ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jaunita_kulas@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jaunita_kulas@example.net"], ["encrypted_password", "$2a$04$0V9D8KtJSYSOBlcU0lqQIu9GwQoXaRYZiLrfTO51vuXHTmBsv.HV6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 84], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["description", "Enim laboriosam deleniti beatae. Labore iste quis quia quas cumque sint ad. Suscipit deserunt aut. Voluptate in dolore sit enim mollitia sequi."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Expedita eligendi dolores suscipit voluptas eos animi."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-alias-52' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 83], ["blog_id", 1], ["body", "Eum atque facilis quibusdam ea. Ad tenetur ut quo corrupti deleniti ea error. Veritatis temporibus delectus placeat distinctio sed. Voluptatum dolor odio dolore. Dolore quo molestiae enim reiciendis totam. Facere quod et voluptas doloribus. Enim quidem fugit alias cupiditate et molestiae."], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["excerpt", "Vel culpa molestiae."], ["published", true], ["slug", "aut-alias-52"], ["title", "Sed beatae optio laudantium consequatur."], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test52' OR lower(name) = 'rspec52' OR lower(name) = 'ruby52' OR lower(name) = '#rails52') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails52"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Ines Thompson", "author_email"=>"rex_rippin@example.net", "body"=>"Quia rerum distinctio dolorem ut dolore. Pariatur consequatur voluptate vero non similique velit. Rerum et tempore cum et explicabo."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "rex_rippin@example.net"], ["author_name", "Ines Thompson"], ["body", "Quia rerum distinctio dolorem ut dolore. Pariatur consequatur voluptate vero non similique velit. Rerum et tempore cum et explicabo."], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/aut-alias-52 Completed 302 Found in 7ms (ActiveRecord: 0.6ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'june@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "june@example.org"], ["encrypted_password", "$2a$04$WmKT/yfFw2p6Trdg1yVnJ.vIksapNxEZd03A588q0DWTvozIK3rmW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 86], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["description", "Reprehenderit consequatur nobis. Accusantium provident distinctio numquam sit accusamus ipsa. Laudantium ut quas. Rerum unde veniam facilis eum et qui ut. Libero id occaecati aliquam unde quia doloribus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Consequatur in quia reprehenderit qui voluptatum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'enim-accusantium-53' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 85], ["blog_id", 1], ["body", "Laboriosam est praesentium aut rerum. Et labore animi ut consectetur temporibus omnis laboriosam. Aut vero quibusdam dolore. Qui ullam animi nulla nisi ab sit omnis. Ut cupiditate quae reprehenderit vitae eaque sed."], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["excerpt", "Nesciunt fuga praesentium."], ["published", true], ["slug", "enim-accusantium-53"], ["title", "Libero officiis consectetur sed harum nihil porro adipisci."], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test53' OR lower(name) = 'rspec53' OR lower(name) = 'ruby53' OR lower(name) = '#rails53') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails53"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "melody.barrows@example.org"], ["author_name", "Earnest Parker DVM"], ["body", "Corporis eveniet rerum aperiam. Maiores in voluptates non est autem. Quod sed debitis quibusdam quae."], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_comments" Processing by Almanac::CommentsController#destroy as HTML Parameters: {"id"=>"1", "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "almanac_comments" WHERE "almanac_comments"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/1 Completed 302 Found in 8ms (ActiveRecord: 0.5ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'antonio@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "antonio@example.net"], ["encrypted_password", "$2a$04$fHiWU6QQhnSXYVDVqex.X.xvOhX779qIw4EcSVLrAobl1fHbmdHva"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 88], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["description", "Quia voluptas voluptatem occaecati quas fugit. Tenetur commodi nesciunt voluptates consectetur voluptas aut. Vitae ullam est. Eos omnis voluptatem autem sit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Similique distinctio blanditiis omnis corrupti."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quia-illo-54' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 87], ["blog_id", 1], ["body", "Maxime repellendus ex voluptatem. Quibusdam facere ut non ut. Odio deserunt et aperiam eligendi molestiae et omnis. Quas libero distinctio veritatis sequi ut alias perspiciatis. Quibusdam et et quidem cupiditate voluptas vero. Doloremque eos non impedit eveniet ut cumque similique. Excepturi similique quae ratione."], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["excerpt", "Non."], ["published", true], ["slug", "quia-illo-54"], ["title", "Maiores repudiandae enim deserunt recusandae asperiores quod accusamus."], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test54' OR lower(name) = 'rspec54' OR lower(name) = 'ruby54' OR lower(name) = '#rails54') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test54' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby54"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails54"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "levi.cain@example.org"], ["author_name", "Mr. Randal Grady"], ["body", "Debitis quibusdam ipsam labore odit."], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#destroy as HTML Parameters: {"id"=>"1", "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) DELETE FROM "almanac_comments" WHERE "almanac_comments"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/1 Completed 302 Found in 6ms (ActiveRecord: 0.3ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'june@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "june@example.org"], ["encrypted_password", "$2a$04$hgor/aGE7cldThVUn2OMvOx4Lk5E4AKhHWQW8cXL0KRd6UnPrjodm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 90], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["description", "Reprehenderit consequatur nobis. Accusantium provident distinctio numquam sit accusamus ipsa. Laudantium ut quas. Rerum unde veniam facilis eum et qui ut. Libero id occaecati aliquam unde quia doloribus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Consequatur in quia reprehenderit qui voluptatum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'enim-accusantium-55' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 89], ["blog_id", 1], ["body", "Laboriosam est praesentium aut rerum. Et labore animi ut consectetur temporibus omnis laboriosam. Aut vero quibusdam dolore. Qui ullam animi nulla nisi ab sit omnis. Ut cupiditate quae reprehenderit vitae eaque sed."], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["excerpt", "Nesciunt fuga praesentium."], ["published", true], ["slug", "enim-accusantium-55"], ["title", "Libero officiis consectetur sed harum nihil porro adipisci."], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test55' OR lower(name) = 'rspec55' OR lower(name) = 'ruby55' OR lower(name) = '#rails55') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec55"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby55"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails55"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'earnest@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "earnest@example.org"], ["encrypted_password", "$2a$04$F1STuy3jLkb.P0Dgcg8OueuSg6G73rTB45gcs9yZDeMbEuXtkzVme"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 92], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["description", "Voluptatem quo excepturi. Dolorem molestiae minus quo nihil unde quia excepturi. Perspiciatis animi voluptate et libero ut. Consequuntur commodi quia in aut. Quia voluptatem et omnis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quo a quibusdam dolor ut labore pariatur."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptatibus-et-56' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 91], ["blog_id", 1], ["body", "Est sapiente similique rerum sed et eveniet. Deleniti aliquid quod dolorem. Eaque vel molestias et. In molestiae laudantium aliquam aut odio earum ut. Consectetur voluptatem sit id rem. Eveniet accusantium voluptate veniam rerum consequatur dolores illum. Modi in eum architecto."], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["excerpt", "Necessitatibus ut eos."], ["published", true], ["slug", "voluptatibus-et-56"], ["title", "Hic atque debitis voluptate magni laborum."], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test56' OR lower(name) = 'rspec56' OR lower(name) = 'ruby56' OR lower(name) = '#rails56') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec56"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails56"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'rowena_reichert@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "rowena_reichert@example.org"], ["encrypted_password", "$2a$04$yFkhBsL/UIkXnrNHswkHVO3EDQOZgl10wSBbt8SXxv7FFds4Ljm9e"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 93], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["description", "Porro nihil dolorem quis possimus. Consequuntur nihil aliquam. Qui expedita tenetur qui et nostrum. Maiores impedit at. Adipisci pariatur non omnis repudiandae ad."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quae qui id non quidem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'laborum-velit-57' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 94], ["blog_id", 1], ["body", "Aut vitae fugit quia ut. Architecto nisi dolor repellat provident pariatur. Ex corrupti in accusantium quasi maxime iusto officiis. Officiis magnam eveniet voluptatem dolor iure. Ad quis vel."], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["excerpt", "Qui voluptatem et sed."], ["published", true], ["slug", "laborum-velit-57"], ["title", "Ut voluptatem eaque quaerat magni quae."], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test57' OR lower(name) = 'rspec57' OR lower(name) = 'ruby57' OR lower(name) = '#rails57') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby57"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails57"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eos-commodi-58' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 95], ["blog_id", 1], ["body", "Eos vero veniam. Illum sed ut debitis exercitationem. Reprehenderit aliquid vitae occaecati qui amet consequatur laborum. Velit consequatur et eveniet accusamus autem dolorum rerum. Quidem fugit vel facere placeat asperiores ut. Eveniet temporibus sunt."], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["excerpt", "Nobis doloribus aut."], ["published", true], ["slug", "eos-commodi-58"], ["title", "Dolor dolores at minus debitis sunt omnis."], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test58' OR lower(name) = 'rspec58' OR lower(name) = 'ruby58' OR lower(name) = '#rails58') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test58' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails58"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-placeat-59' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 96], ["blog_id", 1], ["body", "Et ea ducimus quam atque. Consectetur aut magni maiores aut. Dicta omnis quod animi qui dolores fuga. Blanditiis dolorem expedita rem consectetur sint quia. Voluptatum voluptas animi et voluptas rerum nostrum. Qui id dolor praesentium eos non dignissimos error."], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["excerpt", "Adipisci hic ut pariatur eligendi."], ["published", true], ["slug", "qui-placeat-59"], ["title", "Possimus totam repudiandae consequatur cumque enim."], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test59' OR lower(name) = 'rspec59' OR lower(name) = 'ruby59' OR lower(name) = '#rails59') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails59"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'iure-ea-60' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 97], ["blog_id", 1], ["body", "Placeat rerum id maiores deleniti suscipit. Velit eum eligendi rerum alias incidunt omnis eveniet. Et nobis eos sed sunt delectus voluptates. Cum sunt ut quo. At necessitatibus omnis. Beatae cum facilis repudiandae deserunt temporibus."], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["excerpt", "Harum."], ["published", true], ["slug", "iure-ea-60"], ["title", "Laborum pariatur est voluptatem."], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test60' OR lower(name) = 'rspec60' OR lower(name) = 'ruby60' OR lower(name) = '#rails60') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails60"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'molestiae-sed-61' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 98], ["blog_id", 1], ["body", "Accusantium distinctio sed maiores ut adipisci. Sint totam non sunt velit quia ullam earum. Ut ad nulla voluptatibus est velit. Ratione provident aut recusandae ut et tenetur. Soluta voluptas repellendus quia ipsum et. Facere nesciunt rerum incidunt quia saepe aperiam culpa. Rerum omnis voluptates dolores."], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["excerpt", "Molestiae adipisci et et."], ["published", true], ["slug", "molestiae-sed-61"], ["title", "Quam possimus nihil quidem deleniti."], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test61' OR lower(name) = 'rspec61' OR lower(name) = 'ruby61' OR lower(name) = '#rails61') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails61"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 8ms (Views: 3.1ms | ActiveRecord: 0.1ms) Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'damion@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "damion@example.com"], ["encrypted_password", "$2a$04$FpJl16sPVvn9jsrSKiIH8.p5xGNzMS/jroy73MRPXVHQoLzHk7/2a"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 99], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["description", "Fuga cupiditate recusandae unde voluptatem eaque. Inventore sint tempora molestias vel natus quaerat molestiae. Reprehenderit qui tempore. Praesentium iste vel. Officia cupiditate aut est error."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ut iusto."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'hic-maxime-62' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 100], ["blog_id", 1], ["body", "Possimus ut et voluptas. Pariatur error quam repellendus. Et hic veritatis error. Ipsa iste odio quam omnis qui. Dolores voluptas unde veritatis amet. Minima quam neque ut commodi veniam nihil."], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["excerpt", "Nihil deserunt explicabo."], ["published", false], ["slug", "hic-maxime-62"], ["title", "Dolorem itaque ut incidunt."], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test62' OR lower(name) = 'rspec62' OR lower(name) = 'ruby62' OR lower(name) = '#rails62') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails62"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-ut-63' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 101], ["blog_id", 1], ["body", "Enim omnis dolorum quo error incidunt corrupti. Unde accusantium reprehenderit ut ipsam repellat. Dolor hic et. Voluptate sit natus. Totam et quis voluptatem aut incidunt aut sit. Soluta velit qui inventore. Et distinctio vero dolorum exercitationem at."], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["excerpt", "Quam iure excepturi doloribus."], ["published", false], ["slug", "et-ut-63"], ["title", "Delectus et explicabo earum."], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test63' OR lower(name) = 'rspec63' OR lower(name) = 'ruby63' OR lower(name) = '#rails63') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test63' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails63"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (39.6ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quaerat-nostrum-64' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 102], ["blog_id", 1], ["body", "Earum sed delectus minima dolor aperiam eligendi. Sit laboriosam ipsum labore dicta. Aut autem porro nobis ex. Assumenda quo illum. Et ipsam quisquam ut voluptatem reiciendis. Sed odio id error rem. Facere veniam consequatur ea voluptas molestiae atque ut."], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["excerpt", "Libero vitae qui quia molestiae."], ["published", false], ["slug", "quaerat-nostrum-64"], ["title", "Eligendi ratione et eveniet ut."], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test64' OR lower(name) = 'rspec64' OR lower(name) = 'ruby64' OR lower(name) = '#rails64') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails64"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 6ms (Views: 1.6ms | ActiveRecord: 0.1ms) Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f' ORDER BY written_at DESC, id DESC  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'clare.swift@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "clare.swift@example.com"], ["encrypted_password", "$2a$04$0q9O.4v0QiKAMh/DRbpLxenLmW/MoRZp6SP1YAeiFJj.B3LP4rMOG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 103], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["description", "Dolorum harum enim molestiae consequatur voluptatem nulla dolorem. Aliquid nam veniam eos rem corrupti porro. Laboriosam voluptatem tempore."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Laboriosam eius dignissimos."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'june@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "june@example.org"], ["encrypted_password", "$2a$04$xWToVpiFHEb30ebyw8g26uVQ0hqVeLcpZB6O95B78NxSPdW1on63a"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 104], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["description", "Natus aspernatur debitis consequuntur ut beatae quibusdam. Sunt possimus molestias. Exercitationem autem asperiores et quas."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Libero officiis consectetur sed harum nihil porro."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'molestias-soluta-65' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 105], ["blog_id", 1], ["body", "Ut cupiditate quae reprehenderit vitae eaque sed. Consequatur in quia reprehenderit qui voluptatum molestiae. Reprehenderit consequatur nobis. Accusantium provident distinctio numquam sit accusamus ipsa. Laudantium ut quas. Rerum unde veniam facilis eum et qui ut."], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["excerpt", "Laborum esse nisi."], ["published", true], ["slug", "molestias-soluta-65"], ["title", "Cumque et ut ducimus voluptas enim."], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test65' OR lower(name) = 'rspec65' OR lower(name) = 'ruby65' OR lower(name) = '#rails65') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails65"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Testz", "slug"=>"voluptas-sit-66", "excerpt"=>"Laborum fuga sit.", "body"=>"Suscipit ab occaecati accusantium qui voluptate sed ut. Fugit deserunt inventore pariatur est distinctio. Sunt molestiae consequatur id vel quas. Cupiditate velit molestias dolores id iste sit. Vel incidunt et eos aut laborum. Amet fuga voluptas et. Quia quia fuga autem corporis ab dolores.", "published"=>true, "tag_list"=>"common,test66,rspec66,ruby66,#rails66", "author_id"=>"106", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'voluptas-sit-66' AND "almanac_posts"."id" != 1) LIMIT 1  (0.1ms) UPDATE "almanac_posts" SET "title" = 'Testz', "slug" = 'voluptas-sit-66', "excerpt" = 'Laborum fuga sit.', "body" = 'Suscipit ab occaecati accusantium qui voluptate sed ut. Fugit deserunt inventore pariatur est distinctio. Sunt molestiae consequatur id vel quas. Cupiditate velit molestias dolores id iste sit. Vel incidunt et eos aut laborum. Amet fuga voluptas et. Quia quia fuga autem corporis ab dolores.', "author_id" = 106, "updated_at" = '2012-12-28 04:46:11.824576' WHERE "almanac_posts"."id" = 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test66' OR lower(name) = 'rspec66' OR lower(name) = 'ruby66' OR lower(name) = '#rails66') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test66' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec66"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby66"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails66"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."tagger_type" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."context" = 'tags' AND "taggings"."tag_id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5) SQL (0.2ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 42ms (ActiveRecord: 2.6ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'tavares.ondricka@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "tavares.ondricka@example.org"], ["encrypted_password", "$2a$04$Zuv/6RFhivu8BKh/37wZoumjbB35mXBt5KIQL3lRexen1.YMAGfVK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 107], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["description", "Soluta aut quod vero aliquam mollitia. Iure hic ut quidem a iusto. Rerum placeat fugit. Explicabo voluptatem quasi et saepe quis. Reiciendis consequatur dolorum voluptas."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Voluptate tempore quis aperiam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-et-67' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 108], ["blog_id", 1], ["body", "Vel quaerat eaque amet libero possimus non modi. Saepe quidem quia. Eaque adipisci voluptatum rem rerum. Iusto voluptas saepe quaerat nisi quia. Totam voluptatibus amet odio."], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["excerpt", "Voluptate quo minima voluptas delectus."], ["published", true], ["slug", "et-et-67"], ["title", "Odit facilis in."], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test67' OR lower(name) = 'rspec67' OR lower(name) = 'ruby67' OR lower(name) = '#rails67') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails67"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Laborum velit ut distinctio.", "slug"=>"quidem-quas-68", "excerpt"=>"Earum aut quia.", "body"=>"Illo non expedita et repellat sit non. Aut excepturi vel totam et iure sit animi. Odit dolorem vitae quibusdam quisquam optio omnis tempora. Mollitia quod ex quos et deleniti est sed. Sed aut quo quia.", "published"=>true, "tag_list"=>"common,test68,rspec68,ruby68,#rails68", "author_id"=>"109", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'quidem-quas-68' AND "almanac_posts"."id" != 1) LIMIT 1  (0.2ms) UPDATE "almanac_posts" SET "title" = 'Laborum velit ut distinctio.', "slug" = 'quidem-quas-68', "excerpt" = 'Earum aut quia.', "body" = 'Illo non expedita et repellat sit non. Aut excepturi vel totam et iure sit animi. Odit dolorem vitae quibusdam quisquam optio omnis tempora. Mollitia quod ex quos et deleniti est sed. Sed aut quo quia.', "author_id" = 109, "updated_at" = '2012-12-28 04:46:11.902556' WHERE "almanac_posts"."id" = 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test68' OR lower(name) = 'rspec68' OR lower(name) = 'ruby68' OR lower(name) = '#rails68') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test68' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails68"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."tagger_type" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."context" = 'tags' AND "taggings"."tag_id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 60ms (ActiveRecord: 2.8ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'june@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "june@example.org"], ["encrypted_password", "$2a$04$f25l1XzlKfVx2JMk8FvPLeHUXDT4H7ZxKvQ7KNTsi6ZiSsQkQ/GC6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 110], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00], ["description", "Natus aspernatur debitis consequuntur ut beatae quibusdam. Sunt possimus molestias. Exercitationem autem asperiores et quas."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Libero officiis consectetur sed harum nihil porro."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (40.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'molestias-soluta-69' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 111], ["blog_id", 1], ["body", "Ut cupiditate quae reprehenderit vitae eaque sed. Consequatur in quia reprehenderit qui voluptatum molestiae. Reprehenderit consequatur nobis. Accusantium provident distinctio numquam sit accusamus ipsa. Laudantium ut quas. Rerum unde veniam facilis eum et qui ut."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["excerpt", "Laborum esse nisi."], ["published", true], ["slug", "molestias-soluta-69"], ["title", "Cumque et ut ducimus voluptas enim."], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test69' OR lower(name) = 'rspec69' OR lower(name) = 'ruby69' OR lower(name) = '#rails69') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test69"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec69"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby69"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails69"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"voluptas-sit-70", "excerpt"=>"Laborum fuga sit.", "body"=>"Suscipit ab occaecati accusantium qui voluptate sed ut. Fugit deserunt inventore pariatur est distinctio. Sunt molestiae consequatur id vel quas. Cupiditate velit molestias dolores id iste sit. Vel incidunt et eos aut laborum. Amet fuga voluptas et. Quia quia fuga autem corporis ab dolores.", "published"=>true, "tag_list"=>"common,test70,rspec70,ruby70,#rails70", "author_id"=>"112", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'voluptas-sit-70' AND "almanac_posts"."id" != 1) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 12ms (Views: 2.2ms | ActiveRecord: 0.5ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'tavares.ondricka@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "tavares.ondricka@example.org"], ["encrypted_password", "$2a$04$GgrPGd6OYDm1sccG3KAqyeDzEZrSQ1Cr50BpbRr0v3PYi7isnYWRm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 113], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["description", "Soluta aut quod vero aliquam mollitia. Iure hic ut quidem a iusto. Rerum placeat fugit. Explicabo voluptatem quasi et saepe quis. Reiciendis consequatur dolorum voluptas."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Voluptate tempore quis aperiam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-et-71' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 114], ["blog_id", 1], ["body", "Vel quaerat eaque amet libero possimus non modi. Saepe quidem quia. Eaque adipisci voluptatum rem rerum. Iusto voluptas saepe quaerat nisi quia. Totam voluptatibus amet odio."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["excerpt", "Voluptate quo minima voluptas delectus."], ["published", true], ["slug", "et-et-71"], ["title", "Odit facilis in."], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test71' OR lower(name) = 'rspec71' OR lower(name) = 'ruby71' OR lower(name) = '#rails71') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails71"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"voluptate-tempora-72", "excerpt"=>"Est nisi.", "body"=>"Exercitationem quia necessitatibus amet esse. Illo non expedita et repellat sit non. Aut excepturi vel totam et iure sit animi. Odit dolorem vitae quibusdam quisquam optio omnis tempora. Mollitia quod ex quos et deleniti est sed. Sed aut quo quia. Et cum rerum.", "published"=>true, "tag_list"=>"common,test72,rspec72,ruby72,#rails72", "author_id"=>"115", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'voluptate-tempora-72' AND "almanac_posts"."id" != 1) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 12ms (Views: 1.6ms | ActiveRecord: 0.5ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'june@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "june@example.org"], ["encrypted_password", "$2a$04$JhhEWzCMmzydBVfKHXFxMuxEGamNibWxScNdOsN.tWb/jTcFYDy6e"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 116], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["description", "Natus aspernatur debitis consequuntur ut beatae quibusdam. Sunt possimus molestias. Exercitationem autem asperiores et quas."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Libero officiis consectetur sed harum nihil porro."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'molestias-soluta-73' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 117], ["blog_id", 1], ["body", "Ut cupiditate quae reprehenderit vitae eaque sed. Consequatur in quia reprehenderit qui voluptatum molestiae. Reprehenderit consequatur nobis. Accusantium provident distinctio numquam sit accusamus ipsa. Laudantium ut quas. Rerum unde veniam facilis eum et qui ut."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["excerpt", "Laborum esse nisi."], ["published", true], ["slug", "molestias-soluta-73"], ["title", "Cumque et ut ducimus voluptas enim."], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test73' OR lower(name) = 'rspec73' OR lower(name) = 'ruby73' OR lower(name) = '#rails73') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails73"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quia-veniam-74' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 118], ["blog_id", 1], ["body", "Fugit deserunt inventore pariatur est distinctio. Sunt molestiae consequatur id vel quas. Cupiditate velit molestias dolores id iste sit. Vel incidunt et eos aut laborum. Amet fuga voluptas et."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["excerpt", "Sunt molestiae et."], ["published", true], ["slug", "quia-veniam-74"], ["title", "Libero id occaecati aliquam unde quia doloribus."], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test74' OR lower(name) = 'rspec74' OR lower(name) = 'ruby74' OR lower(name) = '#rails74') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test74' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails74"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'provident-repudiandae-75' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 119], ["blog_id", 1], ["body", "Voluptatibus animi consequatur optio earum illo. Omnis quidem fuga non nostrum itaque possimus fugit. Voluptates quaerat nam excepturi. Perspiciatis voluptatem cupiditate. Et laboriosam optio totam est repellendus commodi voluptatem. Dolores velit ad et molestias cupiditate."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["excerpt", "Ratione dolorum eligendi quis."], ["published", true], ["slug", "provident-repudiandae-75"], ["title", "Quia quia fuga autem corporis ab dolores."], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test75' OR lower(name) = 'rspec75' OR lower(name) = 'ruby75' OR lower(name) = '#rails75') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails75"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sint-omnis-76' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 120], ["blog_id", 1], ["body", "Enim aspernatur omnis. Laborum et ut quia. Numquam nulla velit quasi ullam qui ipsum et. Quia sit tenetur ut ab ducimus voluptatem nulla. Porro sapiente aliquid sunt nihil. Suscipit dignissimos quo perspiciatis voluptas. Voluptate voluptas consequatur et molestias quibusdam eos."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["excerpt", "Sed ipsam illum accusantium blanditiis et."], ["published", true], ["slug", "sint-omnis-76"], ["title", "Hic omnis ullam."], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test76' OR lower(name) = 'rspec76' OR lower(name) = 'ruby76' OR lower(name) = '#rails76') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails76"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'occaecati-at-77' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 121], ["blog_id", 1], ["body", "Asperiores aut aperiam in. At ad ex veritatis tempora qui. Facere fugiat quibusdam sint sit alias eius quas. Corporis quia non et fuga. Quod est ut. Voluptates repellendus occaecati quia praesentium ipsum. Sunt ex libero cum in qui ut rerum."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["excerpt", "Est libero fugit."], ["published", true], ["slug", "occaecati-at-77"], ["title", "Quia iure illum eveniet molestiae sit."], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test77' OR lower(name) = 'rspec77' OR lower(name) = 'ruby77' OR lower(name) = '#rails77') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test77"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec77"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby77"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails77"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Parameters: {"tag_name"=>"common"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common') Completed 200 OK in 9ms (Views: 2.3ms | ActiveRecord: 0.2ms) Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" JOIN taggings posts_taggings_d3724d0 ON posts_taggings_d3724d0.taggable_id = almanac_posts.id AND posts_taggings_d3724d0.taggable_type = 'Almanac::Post' AND posts_taggings_d3724d0.tag_id = 1 WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'althea.wintheiser@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "althea.wintheiser@example.com"], ["encrypted_password", "$2a$04$IUvJNNByv5bWQ/CU1SUMJeoDt5fAOx/rygQogZ/R6nvIKxk.4Bh/2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 122], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["description", "Ut ut atque suscipit amet. Vitae sapiente quae minus illum quos itaque consequatur. Perspiciatis voluptates et modi eum consequatur. Nobis eos commodi ea."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Eum vitae culpa."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'june@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "june@example.org"], ["encrypted_password", "$2a$04$paddCT9MfdEWLxYVqJKcqeqwXUxff1M6nDL5UXERXNvIF1wzYAD9S"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 123], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["description", "Natus aspernatur debitis consequuntur ut beatae quibusdam. Sunt possimus molestias. Exercitationem autem asperiores et quas."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Libero officiis consectetur sed harum nihil porro."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_posts"  Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Cumque et ut ducimus voluptas enim.", "slug"=>"molestias-soluta-78", "excerpt"=>"Laborum esse nisi.", "body"=>"Ut cupiditate quae reprehenderit vitae eaque sed. Consequatur in quia reprehenderit qui voluptatum molestiae. Reprehenderit consequatur nobis. Accusantium provident distinctio numquam sit accusamus ipsa. Laudantium ut quas. Rerum unde veniam facilis eum et qui ut.", "published"=>true, "tag_list"=>"common,test78,rspec78,ruby78,#rails78", "author_id"=>"124", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'molestias-soluta-78' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Ut cupiditate quae reprehenderit vitae eaque sed. Consequatur in quia reprehenderit qui voluptatum molestiae. Reprehenderit consequatur nobis. Accusantium provident distinctio numquam sit accusamus ipsa. Laudantium ut quas. Rerum unde veniam facilis eum et qui ut."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["excerpt", "Laborum esse nisi."], ["published", true], ["slug", "molestias-soluta-78"], ["title", "Cumque et ut ducimus voluptas enim."], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test78' OR lower(name) = 'rspec78' OR lower(name) = 'ruby78' OR lower(name) = '#rails78') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test78"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec78"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby78"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails78"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 70ms (ActiveRecord: 2.6ms)  (0.0ms) SELECT COUNT(*) FROM "almanac_posts"   (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'christina@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "christina@example.org"], ["encrypted_password", "$2a$04$zoklrM/HK87bimOelBFna.X4fXq3YL0YLcg0HX/Tbk7p.wi3dZmAq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 125], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["description", "Eos quam nihil eos sint et. Necessitatibus ut eos et aut. Est sapiente similique rerum sed et eveniet. Deleniti aliquid quod dolorem. Eaque vel molestias et."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Id et est."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"In molestiae laudantium aliquam aut odio earum ut.", "slug"=>"ducimus-id-79", "excerpt"=>"Id molestiae qui.", "body"=>"Et esse animi fugit deleniti tenetur qui sed. Repellendus aut ullam. Dolores est eos earum eum laboriosam dolorum. Fugiat hic qui. Accusantium consequuntur blanditiis non. Sunt quisquam corrupti consequatur fugiat.", "published"=>true, "tag_list"=>"common,test79,rspec79,ruby79,#rails79", "author_id"=>"126", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ducimus-id-79' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Et esse animi fugit deleniti tenetur qui sed. Repellendus aut ullam. Dolores est eos earum eum laboriosam dolorum. Fugiat hic qui. Accusantium consequuntur blanditiis non. Sunt quisquam corrupti consequatur fugiat."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["excerpt", "Id molestiae qui."], ["published", true], ["slug", "ducimus-id-79"], ["title", "In molestiae laudantium aliquam aut odio earum ut."], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test79' OR lower(name) = 'rspec79' OR lower(name) = 'ruby79' OR lower(name) = '#rails79') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby79"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails79"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 28ms (ActiveRecord: 2.4ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'june@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "june@example.org"], ["encrypted_password", "$2a$04$LQk0dJNhf4ENn4LMHsExy.KjPH8pzk7L6GoUhodE0uFhBkpg9jb02"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 127], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["description", "Natus aspernatur debitis consequuntur ut beatae quibusdam. Sunt possimus molestias. Exercitationem autem asperiores et quas."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Libero officiis consectetur sed harum nihil porro."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"asperiores-dolorum-80", "excerpt"=>"Aut vero.", "body"=>"Magnam quam non omnis praesentium est est. Et quod tenetur. Molestias ut perferendis tenetur occaecati accusantium. Reprehenderit consequatur nobis. Accusantium provident distinctio numquam sit accusamus ipsa. Laudantium ut quas.", "published"=>true, "tag_list"=>"common,test80,rspec80,ruby80,#rails80", "author_id"=>"128", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'asperiores-dolorum-80' LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 12ms (Views: 2.2ms | ActiveRecord: 0.4ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'durward_ratke@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "durward_ratke@example.org"], ["encrypted_password", "$2a$04$2NjX0lTdud3cj8OFnn/9PuGi55jldXXcoQkZBoeinJbis2kuqRHy2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 129], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["description", "Id nihil impedit velit dolorem dolore possimus expedita. Est at facilis iure. Unde consequuntur velit libero sint. Est sapiente similique rerum sed et eveniet."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "In ut."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"ab-sit-81", "excerpt"=>"Commodi magnam laboriosam sit aliquid et.", "body"=>"Expedita quia quo dolor est consectetur repellendus aut. Eum vero dignissimos odio pariatur. Excepturi id deleniti. Et esse animi fugit deleniti tenetur qui sed. Repellendus aut ullam. Dolores est eos earum eum laboriosam dolorum. Fugiat hic qui.", "published"=>true, "tag_list"=>"common,test81,rspec81,ruby81,#rails81", "author_id"=>"130", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ab-sit-81' LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 1.4ms | ActiveRecord: 0.4ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'june@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "june@example.org"], ["encrypted_password", "$2a$04$m5AVNkVOXUMEl2CefCW7BODLH42M0mhThXZtXuu41X61475sT/C9G"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 131], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["description", "Natus aspernatur debitis consequuntur ut beatae quibusdam. Sunt possimus molestias. Exercitationem autem asperiores et quas."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Libero officiis consectetur sed harum nihil porro."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'molestias-soluta-82' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 132], ["blog_id", 1], ["body", "Ut cupiditate quae reprehenderit vitae eaque sed. Consequatur in quia reprehenderit qui voluptatum molestiae. Reprehenderit consequatur nobis. Accusantium provident distinctio numquam sit accusamus ipsa. Laudantium ut quas. Rerum unde veniam facilis eum et qui ut."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["excerpt", "Laborum esse nisi."], ["published", true], ["slug", "molestias-soluta-82"], ["title", "Cumque et ut ducimus voluptas enim."], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test82' OR lower(name) = 'rspec82' OR lower(name) = 'ruby82' OR lower(name) = '#rails82') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test82"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec82"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby82"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails82"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_posts" Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."post_id" = 1 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 22ms (ActiveRecord: 1.2ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'christina@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "christina@example.org"], ["encrypted_password", "$2a$04$81ClIIO8sG0MoS6eg8k5durrQr7.sWiZzGlf9bV7pmfNIt1sHB/FK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 133], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["description", "Eos quam nihil eos sint et. Necessitatibus ut eos et aut. Est sapiente similique rerum sed et eveniet. Deleniti aliquid quod dolorem. Eaque vel molestias et."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Id et est."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ducimus-id-83' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 134], ["blog_id", 1], ["body", "Et esse animi fugit deleniti tenetur qui sed. Repellendus aut ullam. Dolores est eos earum eum laboriosam dolorum. Fugiat hic qui. Accusantium consequuntur blanditiis non. Sunt quisquam corrupti consequatur fugiat."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["excerpt", "Id molestiae qui."], ["published", true], ["slug", "ducimus-id-83"], ["title", "In molestiae laudantium aliquam aut odio earum ut."], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test83' OR lower(name) = 'rspec83' OR lower(name) = 'ruby83' OR lower(name) = '#rails83') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails83"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."post_id" = 1 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 11ms (ActiveRecord: 0.9ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 136], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["description", "Excepturi quidem non qui aut natus aut. Neque odio explicabo molestiae ut ipsa qui. Voluptate debitis voluptatum et qui."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sit et."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'officiis-ab-84' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 135], ["blog_id", 1], ["body", "Voluptatum voluptatem ab est rerum ut ut et. Quos ratione molestiae ducimus veniam velit reiciendis quam. Ea quod quisquam sequi. Ducimus dolores ab tempora autem quia explicabo sit. Eaque esse commodi reiciendis sit."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["excerpt", "Molestiae autem eligendi."], ["published", true], ["slug", "officiis-ab-84"], ["title", "Quo quisquam voluptatibus."], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test84' OR lower(name) = 'rspec84' OR lower(name) = 'ruby84' OR lower(name) = '#rails84') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby84"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails84"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "cooper@example.com"], ["author_name", "King Stracke"], ["body", "Autem vero ea neque atque quibusdam est facilis. Id facilis ipsam. Placeat sunt rerum."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" ORDER BY id ASC  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 138], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["description", "Asperiores saepe doloremque ab qui voluptatem. Blanditiis unde animi. Maiores dolorem est dolor aut. Cum aut non eum similique doloremque perferendis et."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Omnis quidem fuga non nostrum itaque possimus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nesciunt-est-85' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 137], ["blog_id", 1], ["body", "Et est dolores magnam explicabo ratione nulla. Dicta tenetur nihil. Dolores est recusandae facere molestiae velit fugiat voluptas. Animi enim a incidunt ad iste. Debitis praesentium doloribus quam. Voluptatibus animi consequatur optio earum illo."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["excerpt", "Asperiores sed placeat."], ["published", true], ["slug", "nesciunt-est-85"], ["title", "Non magni inventore ipsa et iure aliquam."], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test85' OR lower(name) = 'rspec85' OR lower(name) = 'ruby85' OR lower(name) = '#rails85') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails85' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails85"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 140], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["description", "Et quidem aut possimus reiciendis magni et illo. Quam possimus nihil quidem deleniti. Sit dolor eaque quia consectetur asperiores. Saepe minus deserunt suscipit distinctio. Necessitatibus dolores praesentium occaecati qui voluptatem error atque."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Accusantium natus inventore veniam earum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dignissimos-impedit-86' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 139], ["blog_id", 1], ["body", "Eius voluptatem omnis. Blanditiis sit cumque assumenda. Ullam asperiores molestiae illo alias nobis eligendi. Qui ex delectus qui et aliquid. Magnam soluta labore est a et consequuntur necessitatibus."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["excerpt", "Laboriosam."], ["published", true], ["slug", "dignissimos-impedit-86"], ["title", "Aut rem aperiam atque sint repellendus sunt."], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test86' OR lower(name) = 'rspec86' OR lower(name) = 'ruby86' OR lower(name) = '#rails86') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test86"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec86"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby86"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails86"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 142], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["description", "Et vitae quo autem et enim aut molestiae. Ad iste ut. Eum rem ut ut molestiae dignissimos."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et modi velit impedit eum amet qui."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'perferendis-asperiores-87' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 141], ["blog_id", 1], ["body", "Ab optio mollitia voluptas exercitationem cum praesentium. Sequi inventore atque nemo quia. Quam hic architecto eum vero amet molestias odit. Temporibus rerum molestias aut molestiae qui quod est. Et qui ut fugiat et ut animi non. Corrupti non molestiae et sunt qui."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["excerpt", "Praesentium accusamus."], ["published", true], ["slug", "perferendis-asperiores-87"], ["title", "Dolorem qui iste quis quasi blanditiis et."], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test87' OR lower(name) = 'rspec87' OR lower(name) = 'ruby87' OR lower(name) = '#rails87') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec87"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby87"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails87"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 144], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["description", "Et perferendis corporis eaque sit architecto asperiores adipisci. Et odio assumenda dolor quia cumque quia harum. Nisi quia soluta saepe. Tempore temporibus rem quia. Et pariatur sequi perspiciatis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Exercitationem cupiditate."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sunt-eius-88' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 143], ["blog_id", 1], ["body", "Optio blanditiis omnis et voluptatem accusantium quam quia. Iste magni ratione beatae impedit. Doloribus velit ut fugit similique ut illum. Modi consectetur sed nemo est et laudantium. Quo aliquid dicta id cum."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["excerpt", "Voluptatem in adipisci placeat."], ["published", true], ["slug", "sunt-eius-88"], ["title", "Magnam veritatis qui autem."], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test88' OR lower(name) = 'rspec88' OR lower(name) = 'ruby88' OR lower(name) = '#rails88') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails88"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "liza@example.org"], ["author_name", "Jaylon Langworth PhD"], ["body", "Rerum in voluptatem."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "gaylord@example.org"], ["author_name", "Julia Morissette"], ["body", "Fugit deserunt inventore pariatur est distinctio."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "ima@example.com"], ["author_name", "Dr. Carmela Russel"], ["body", "Molestias odit vero rerum."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "carolanne@example.org"], ["author_name", "Mr. Gabriella Bins"], ["body", "Ad harum magnam recusandae iste maiores."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "hailie@example.org"], ["author_name", "Lionel Roberts"], ["body", "Libero eum a consequuntur modi. Corrupti dicta cumque itaque ea voluptate. Dolore quo molestiae enim reiciendis totam."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "brenda.bartoletti@example.com"], ["author_name", "Ms. Donny Gottlieb"], ["body", "Enim eos dolore."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "lilyan@example.com"], ["author_name", "Brook Effertz"], ["body", "Ut soluta possimus voluptatem aut totam. Quae voluptatem hic ducimus quia corporis illum. Eos magnam omnis non sunt et quam enim."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "florida_lehner@example.com"], ["author_name", "Cecilia Kovacek"], ["body", "Dolor in ab molestias."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "amina@example.com"], ["author_name", "Stephany Lind"], ["body", "Porro optio et."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "sheila_ankunding@example.com"], ["author_name", "Myron Reinger"], ["body", "Fugiat et sit voluptates quo debitis."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "orrin@example.org"], ["author_name", "Dr. Christ Blanda"], ["body", "Corrupti sit adipisci vel aspernatur impedit magni. Ut ipsam ea eligendi quam."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "malika@example.net"], ["author_name", "Leopoldo Walker Jr."], ["body", "Libero ullam voluptatem voluptas."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "dariana.goldner@example.com"], ["author_name", "Miss Waino Pouros"], ["body", "Est inventore nam atque delectus iste tenetur qui. Quis aut suscipit quia in nihil."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "cade@example.com"], ["author_name", "Sidney Streich IV"], ["body", "Ipsam rem nisi reiciendis dolor consectetur."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "immanuel_stracke@example.com"], ["author_name", "Kenya Walsh"], ["body", "In quis aut optio aut."], ["created_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:46:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments" WHERE "almanac_comments"."spam" = 't'  (0.6ms) rollback transaction Connecting to database specified by database.yml  (1.0ms) DELETE FROM "users";  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';  (1.2ms) DELETE FROM "almanac_posts";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_posts';  (0.8ms) DELETE FROM "almanac_images";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_images';  (0.8ms) DELETE FROM "tags";  (0.1ms) DELETE FROM sqlite_sequence where name = 'tags';  (0.7ms) DELETE FROM "taggings";  (0.1ms) DELETE FROM sqlite_sequence where name = 'taggings';  (1.0ms) DELETE FROM "almanac_comments";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_comments';  (1.1ms) DELETE FROM "almanac_blogs";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_blogs';  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (1.8ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jany_boyle@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:30 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jany_boyle@example.com"], ["encrypted_password", "$2a$04$3D47V5.HhOIwelNg.c7PMu/T20NXddZp3oB1A9ewbt4XW0Sd9j7NS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_blogs" Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Aliquam eum sed quaerat a aspernatur voluptatem.", "description"=>"In mollitia natus dignissimos aut. Libero nulla ratione eum. Autem nemo et. Eveniet magnam voluptatem porro deleniti necessitatibus explicabo.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:30 UTC +00:00], ["description", "In mollitia natus dignissimos aut. Libero nulla ratione eum. Autem nemo et. Eveniet magnam voluptatem porro deleniti necessitatibus explicabo."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aliquam eum sed quaerat a aspernatur voluptatem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 23ms (ActiveRecord: 0.9ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ralph.senger@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:30 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ralph.senger@example.org"], ["encrypted_password", "$2a$04$RAnJY6P7BgXxkk0z8tjON.eXFpIVtrcSj9xqf1vETYPbuyXh7M962"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Nam ea soluta ut iure ut officiis.", "description"=>"Dolore officia qui consequatur at possimus provident laboriosam. Esse nobis aut aut et sint dicta ducimus. Aliquam tenetur non.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:30 UTC +00:00], ["description", "Dolore officia qui consequatur at possimus provident laboriosam. Esse nobis aut aut et sint dicta ducimus. Aliquam tenetur non."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Nam ea soluta ut iure ut officiis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 6ms (ActiveRecord: 0.9ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jany_boyle@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:30 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jany_boyle@example.com"], ["encrypted_password", "$2a$04$8AQeq8TW74fsLW0GwbyDF.G/sWKQoeJWaLLLJyJajImnJ4MDB5AdG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs" Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Aliquam eum sed quaerat a aspernatur voluptatem voluptate. Ut vitae dolor veritatis sit quia et eligendi. Sit voluptatibus suscipit est et nihil fugit autem. Autem nemo et. Eveniet magnam voluptatem porro deleniti necessitatibus explicabo.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 21ms (Views: 14.0ms | ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ralph.senger@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:30 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ralph.senger@example.org"], ["encrypted_password", "$2a$04$3.A6pT1nUkSvyP9oa0PX2uo50Fl/sndq.QU40GfuqH4ZlW5YcKBji"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Dolor dolor velit quaerat impedit quisquam. Nulla necessitatibus natus. Ea excepturi ab. Molestiae atque sint iure quis sunt aut odio.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 1.4ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jany_boyle@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:30 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jany_boyle@example.com"], ["encrypted_password", "$2a$04$mVqVwqS.Blr4VcI3aewZ4unYfKJUE7ciROq4FEUbgYL13Mf/pmZgW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:30 UTC +00:00], ["description", "In mollitia natus dignissimos aut. Libero nulla ratione eum. Autem nemo et. Eveniet magnam voluptatem porro deleniti necessitatibus explicabo."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aliquam eum sed quaerat a aspernatur voluptatem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Testz", "description"=>"Voluptas sed et ad animi sit quae. Cupiditate qui suscipit nihil animi. Est dolor illum laborum expedita harum. Tenetur veniam est odio dolores. Et quos placeat occaecati sequi fugit nihil.", "author_id"=>"2"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Testz', "description" = 'Voluptas sed et ad animi sit quae. Cupiditate qui suscipit nihil animi. Est dolor illum laborum expedita harum. Tenetur veniam est odio dolores. Et quos placeat occaecati sequi fugit nihil.', "author_id" = 2, "updated_at" = '2012-12-28 04:47:30.964874' WHERE "almanac_blogs"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 36ms (ActiveRecord: 0.5ms) Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'hattie@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "hattie@example.net"], ["encrypted_password", "$2a$04$RfaglVGNvtiq6ruToc/rG.UycDm1Dprz8xbLtZPUaJvuKcHABGSNS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 3], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["description", "Dolor consequuntur rerum. Consequuntur non ut enim. Non et voluptatem vero quas. Impedit fuga excepturi ex consequuntur molestias iste sunt."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Id vel error nihil blanditiis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Incidunt aut consequuntur autem alias minus.", "description"=>"Ex et amet quaerat occaecati. Nam laboriosam qui voluptas iste mollitia consequatur ut. Quod cupiditate accusantium quaerat officiis. Explicabo qui asperiores ut similique mollitia neque temporibus.", "author_id"=>"4"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Incidunt aut consequuntur autem alias minus.', "description" = 'Ex et amet quaerat occaecati. Nam laboriosam qui voluptas iste mollitia consequatur ut. Quod cupiditate accusantium quaerat officiis. Explicabo qui asperiores ut similique mollitia neque temporibus.', "author_id" = 4, "updated_at" = '2012-12-28 04:47:31.015213' WHERE "almanac_blogs"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 5ms (ActiveRecord: 0.3ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jany_boyle@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jany_boyle@example.com"], ["encrypted_password", "$2a$04$ByE052KhAd6M3v7rdMhX3uOQhC6X9aBCPowmA/d3Q2SVMRz/hgz7y"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 5], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["description", "In mollitia natus dignissimos aut. Libero nulla ratione eum. Autem nemo et. Eveniet magnam voluptatem porro deleniti necessitatibus explicabo."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aliquam eum sed quaerat a aspernatur voluptatem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Voluptas sed et ad animi sit quae. Cupiditate qui suscipit nihil animi. Est dolor illum laborum expedita harum. Tenetur veniam est odio dolores. Et quos placeat occaecati sequi fugit nihil.", "author_id"=>"6"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 2.2ms | ActiveRecord: 0.2ms) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'hattie@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "hattie@example.net"], ["encrypted_password", "$2a$04$2Iyk7gWESeF4fHNjDWCuhuKgE2gaiamBbayMiJKUFN4rDX6P.//l2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 7], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["description", "Dolor consequuntur rerum. Consequuntur non ut enim. Non et voluptatem vero quas. Impedit fuga excepturi ex consequuntur molestias iste sunt."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Id vel error nihil blanditiis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Exercitationem deserunt pariatur autem explicabo dolor est. Deserunt maiores assumenda animi minus commodi explicabo praesentium. Atque omnis minima iusto sed.", "author_id"=>"8"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 1.4ms | ActiveRecord: 0.2ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jany_boyle@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jany_boyle@example.com"], ["encrypted_password", "$2a$04$TH1KDNHh7DRzcsjX5SAo5eMwctZQEV6z2zEj2Jy2MswBQmMX9oKbm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 10], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["description", "Possimus nostrum eveniet temporibus quos tempore. Commodi ut velit atque debitis ut. Fugit distinctio incidunt voluptates corporis optio hic."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Enim omnis beatae et deserunt."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolorem-non-1' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 9], ["blog_id", 1], ["body", "Est quos perspiciatis unde libero voluptas saepe id. Ullam repellat neque consequatur consectetur quidem placeat. Doloribus accusantium eveniet. Eos dolores veniam. Distinctio vel sit fuga officiis. Asperiores dolor possimus occaecati autem."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["excerpt", "Laudantium."], ["published", true], ["slug", "dolorem-non-1"], ["title", "Aliquam eum sed quaerat a aspernatur voluptatem voluptate."], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test1' OR lower(name) = 'rspec1' OR lower(name) = 'ruby1' OR lower(name) = '#rails1') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.2ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails1"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.9ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_comments"  Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Darrel Johnson III", "author_email"=>"tiana_schinner@example.net", "body"=>"Temporibus ab earum ratione ea."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "tiana_schinner@example.net"], ["author_name", "Darrel Johnson III"], ["body", "Temporibus ab earum ratione ea."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/dolorem-non-1 Completed 302 Found in 19ms (ActiveRecord: 0.7ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"   (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'elia@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "elia@example.net"], ["encrypted_password", "$2a$04$z11eUIGt3HQGLZKx75tO8u3I/PiQHIQEJOyF7ZkTSZgggZeSYdoeC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 12], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["description", "Debitis sit voluptatem enim voluptates quis molestias accusantium. Repellat dolor tenetur delectus dignissimos. Rerum cupiditate id velit tempore. Eveniet unde asperiores. Et fuga est."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ut possimus molestiae non minus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quia-qui-2' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 11], ["blog_id", 1], ["body", "Aspernatur odio numquam mollitia aut et ab officia. Odit adipisci nihil est. Est ducimus perferendis itaque eligendi fugiat voluptates. Corrupti voluptas deleniti illum ea ducimus ut temporibus. Dolor eaque eos ut ut rerum occaecati. Numquam voluptas magnam aut autem quisquam. Reiciendis id alias."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["excerpt", "Sit ullam et sed."], ["published", true], ["slug", "quia-qui-2"], ["title", "Est tenetur nulla."], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test2' OR lower(name) = 'rspec2' OR lower(name) = 'ruby2' OR lower(name) = '#rails2') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test2"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec2"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby2"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails2"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Okey Lueilwitz", "author_email"=>"idella.oconner@example.org", "body"=>"Est quo voluptate ipsum repudiandae."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "idella.oconner@example.org"], ["author_name", "Okey Lueilwitz"], ["body", "Est quo voluptate ipsum repudiandae."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/quia-qui-2 Completed 302 Found in 7ms (ActiveRecord: 0.5ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jany_boyle@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jany_boyle@example.com"], ["encrypted_password", "$2a$04$i5Xb44t08h4xy4bXcFip6OByYP0eqBymknyQWpfN8lyNh.SfYKxVW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 14], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["description", "Possimus nostrum eveniet temporibus quos tempore. Commodi ut velit atque debitis ut. Fugit distinctio incidunt voluptates corporis optio hic."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Enim omnis beatae et deserunt."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolorem-non-3' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 13], ["blog_id", 1], ["body", "Est quos perspiciatis unde libero voluptas saepe id. Ullam repellat neque consequatur consectetur quidem placeat. Doloribus accusantium eveniet. Eos dolores veniam. Distinctio vel sit fuga officiis. Asperiores dolor possimus occaecati autem."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["excerpt", "Laudantium."], ["published", true], ["slug", "dolorem-non-3"], ["title", "Aliquam eum sed quaerat a aspernatur voluptatem voluptate."], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test3' OR lower(name) = 'rspec3' OR lower(name) = 'ruby3' OR lower(name) = '#rails3') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails3"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Darrel Johnson III", "author_email"=>"tiana_schinner@example.net", "body"=>nil}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Redirected to http://test.host/almanac/dolorem-non-3 Completed 302 Found in 9ms (ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'nella.jerde@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "nella.jerde@example.net"], ["encrypted_password", "$2a$04$M.eROkmU04tTuyL5kRc5He.R2JJCDvpDkQNwHFA0QkrOato/4LxKu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 16], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["description", "Ea sint nulla sint asperiores. Rerum hic omnis exercitationem eaque alias enim. Id dignissimos vel rem perspiciatis et. Sint voluptatem assumenda molestiae tenetur distinctio."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Odio amet qui."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nesciunt-cupiditate-4' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 15], ["blog_id", 1], ["body", "Ad quia accusantium excepturi. Magni non modi ut delectus a quo. Aut nisi modi voluptatem quisquam. Natus numquam autem cumque aut. Ducimus animi sit."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["excerpt", "Ratione ducimus vitae neque."], ["published", true], ["slug", "nesciunt-cupiditate-4"], ["title", "Laudantium reprehenderit minima ut."], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test4' OR lower(name) = 'rspec4' OR lower(name) = 'ruby4' OR lower(name) = '#rails4') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails4"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Jaqueline Cartwright", "author_email"=>"keegan@example.com", "body"=>"Tempora dolor ad quia illum laboriosam enim."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "keegan@example.com"], ["author_name", "Jaqueline Cartwright"], ["body", "Tempora dolor ad quia illum laboriosam enim."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/nesciunt-cupiditate-4 Completed 302 Found in 7ms (ActiveRecord: 0.4ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jany_boyle@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jany_boyle@example.com"], ["encrypted_password", "$2a$04$ulfjvVY4GxDlVFpisHPEru49yvXgYCf5eokvyydccnd7L6C5TXsWa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 18], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["description", "Possimus nostrum eveniet temporibus quos tempore. Commodi ut velit atque debitis ut. Fugit distinctio incidunt voluptates corporis optio hic."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Enim omnis beatae et deserunt."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolorem-non-5' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 17], ["blog_id", 1], ["body", "Est quos perspiciatis unde libero voluptas saepe id. Ullam repellat neque consequatur consectetur quidem placeat. Doloribus accusantium eveniet. Eos dolores veniam. Distinctio vel sit fuga officiis. Asperiores dolor possimus occaecati autem."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["excerpt", "Laudantium."], ["published", true], ["slug", "dolorem-non-5"], ["title", "Aliquam eum sed quaerat a aspernatur voluptatem voluptate."], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test5' OR lower(name) = 'rspec5' OR lower(name) = 'ruby5' OR lower(name) = '#rails5') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test5' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec5"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby5"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails5"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "tiana_schinner@example.net"], ["author_name", "Darrel Johnson III"], ["body", "Temporibus ab earum ratione ea."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_comments" Processing by Almanac::CommentsController#destroy as HTML Parameters: {"id"=>"1", "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "almanac_comments" WHERE "almanac_comments"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/1 Completed 302 Found in 8ms (ActiveRecord: 0.5ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'elia@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "elia@example.net"], ["encrypted_password", "$2a$04$oNAKfYWRbuhXeq7931mkJuVFvEBRuTifFkr0hCDJwQ22Lq9qyg7cy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 20], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["description", "Debitis sit voluptatem enim voluptates quis molestias accusantium. Repellat dolor tenetur delectus dignissimos. Rerum cupiditate id velit tempore. Eveniet unde asperiores. Et fuga est."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ut possimus molestiae non minus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quia-qui-6' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 19], ["blog_id", 1], ["body", "Aspernatur odio numquam mollitia aut et ab officia. Odit adipisci nihil est. Est ducimus perferendis itaque eligendi fugiat voluptates. Corrupti voluptas deleniti illum ea ducimus ut temporibus. Dolor eaque eos ut ut rerum occaecati. Numquam voluptas magnam aut autem quisquam. Reiciendis id alias."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["excerpt", "Sit ullam et sed."], ["published", true], ["slug", "quia-qui-6"], ["title", "Est tenetur nulla."], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test6' OR lower(name) = 'rspec6' OR lower(name) = 'ruby6' OR lower(name) = '#rails6') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test6"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec6"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby6"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails6"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "idella.oconner@example.org"], ["author_name", "Okey Lueilwitz"], ["body", "Est quo voluptate ipsum repudiandae."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#destroy as HTML Parameters: {"id"=>"1", "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) DELETE FROM "almanac_comments" WHERE "almanac_comments"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/1 Completed 302 Found in 6ms (ActiveRecord: 0.3ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jany_boyle@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jany_boyle@example.com"], ["encrypted_password", "$2a$04$.uGUpbrNu0EP3fUSPT2Fi.qLBz2IBoUHxUBt3jorTAOOZYaj9nJoe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 22], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["description", "Possimus nostrum eveniet temporibus quos tempore. Commodi ut velit atque debitis ut. Fugit distinctio incidunt voluptates corporis optio hic."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Enim omnis beatae et deserunt."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolorem-non-7' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 21], ["blog_id", 1], ["body", "Est quos perspiciatis unde libero voluptas saepe id. Ullam repellat neque consequatur consectetur quidem placeat. Doloribus accusantium eveniet. Eos dolores veniam. Distinctio vel sit fuga officiis. Asperiores dolor possimus occaecati autem."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["excerpt", "Laudantium."], ["published", true], ["slug", "dolorem-non-7"], ["title", "Aliquam eum sed quaerat a aspernatur voluptatem voluptate."], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test7' OR lower(name) = 'rspec7' OR lower(name) = 'ruby7' OR lower(name) = '#rails7') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test7"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec7"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails7"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'darrel@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "darrel@example.net"], ["encrypted_password", "$2a$04$RAmyb.oroVuwZx1EoLtTz.uhugfhol3Uv0GZZxrlnMY5vbkxemyUK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 24], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["description", "Adipisci dolor sapiente ullam sit accusamus. Ut id et quas accusamus commodi sequi sunt. Non magnam ullam reiciendis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quos quia."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'accusantium-explicabo-8' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 23], ["blog_id", 1], ["body", "Dolores ipsa voluptatem ex iure ut vel. Labore voluptate ullam. Id ea nisi maiores et. Perspiciatis quia dicta. Id voluptas exercitationem iste quas sit. Sed sunt animi esse hic assumenda accusamus saepe. Ullam quisquam est id numquam et ut autem."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["excerpt", "Eos."], ["published", true], ["slug", "accusantium-explicabo-8"], ["title", "Et aut velit eum maiores aperiam deleniti."], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test8' OR lower(name) = 'rspec8' OR lower(name) = 'ruby8' OR lower(name) = '#rails8') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails8"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 26], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["description", "Dolorem consequatur aut laborum quidem eius qui aut. Quod est numquam eveniet sunt. Praesentium sunt laboriosam. Quis quia nemo."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Fugiat esse."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'hic-sunt-9' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 25], ["blog_id", 1], ["body", "Sequi et saepe aut. Laudantium aliquid consectetur. Sit aperiam quod. Consequatur iusto non amet libero. Natus perspiciatis totam nemo aut quod. Repellat cum rerum. Sequi sint reprehenderit."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["excerpt", "Dolorem asperiores est."], ["published", true], ["slug", "hic-sunt-9"], ["title", "Earum amet est necessitatibus aliquid unde."], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test9' OR lower(name) = 'rspec9' OR lower(name) = 'ruby9' OR lower(name) = '#rails9') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test9"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec9"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby9"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails9"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "thurman@example.com"], ["author_name", "Nadia Dickinson"], ["body", "Tempora quis quidem commodi id inventore."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" ORDER BY id ASC  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 28], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["description", "Ducimus provident debitis sed occaecati consectetur dolores. Rerum quae sit sed. Corrupti et ducimus quis odio qui et."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "A eos quam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'tempore-quia-10' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 27], ["blog_id", 1], ["body", "Neque hic deleniti. Sapiente ut ullam nesciunt. Nihil aperiam doloremque est voluptas reprehenderit illum. Harum maxime ad quaerat est. Quo eum nemo eos maxime. Incidunt saepe quo accusantium vel est."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["excerpt", "Quod cupiditate accusantium."], ["published", true], ["slug", "tempore-quia-10"], ["title", "Et quam magnam aperiam."], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test10' OR lower(name) = 'rspec10' OR lower(name) = 'ruby10' OR lower(name) = '#rails10') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test10"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec10"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby10"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails10"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 30], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["description", "Incidunt quidem ullam aspernatur itaque voluptate. Est et magnam hic ipsam. Rerum possimus et eum sunt qui."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Veritatis aut qui molestiae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quis-voluptates-11' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 29], ["blog_id", 1], ["body", "Perspiciatis ipsum et. Ut natus ducimus itaque illo. Atque dolor perspiciatis quidem cum rerum. Nostrum et doloremque. Est nisi quae sunt. Facere rem in sed nisi possimus culpa sit."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["excerpt", "Nesciunt odit sit ducimus magni."], ["published", true], ["slug", "quis-voluptates-11"], ["title", "Autem culpa consequatur totam aut."], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test11' OR lower(name) = 'rspec11' OR lower(name) = 'ruby11' OR lower(name) = '#rails11') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test11"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec11"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby11"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails11"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 32], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["description", "Aut explicabo accusamus voluptas illo blanditiis. Dolores neque voluptatem nam fuga pariatur adipisci. Ut nihil ut quas."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Velit saepe neque assumenda sunt quis laudantium."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolores-fugit-12' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 31], ["blog_id", 1], ["body", "Voluptatem amet doloribus molestias rerum aut non voluptas. Itaque consequatur ut consequatur maxime sequi asperiores velit. Quis perferendis laudantium et et. Iusto ea qui molestias voluptatem accusamus necessitatibus. Nulla quia qui quo consequatur."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["excerpt", "Quasi optio fugit distinctio."], ["published", true], ["slug", "dolores-fugit-12"], ["title", "Aliquid quasi numquam dicta consectetur dolor sint quis."], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test12' OR lower(name) = 'rspec12' OR lower(name) = 'ruby12' OR lower(name) = '#rails12') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test12"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec12"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby12"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails12"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 34], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["description", "Optio iste quis doloribus nobis dolorem. Veritatis quia voluptate molestiae minima. Molestias optio maxime sunt tempore rerum consequuntur. Repudiandae vel quaerat sint sunt. Architecto voluptate quibusdam quis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Molestiae eius doloremque non velit eveniet iure."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nisi-omnis-13' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 33], ["blog_id", 1], ["body", "Molestiae blanditiis quas molestiae harum. Esse animi et odio. Et ut iste. Libero ut placeat necessitatibus est enim soluta. Architecto et maiores esse dolorem facilis. Tenetur quaerat libero sed deleniti. Rerum enim dolorum autem rerum aliquid et."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["excerpt", "Fugiat accusantium delectus neque est non."], ["published", true], ["slug", "nisi-omnis-13"], ["title", "A excepturi voluptate."], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test13' OR lower(name) = 'rspec13' OR lower(name) = 'ruby13' OR lower(name) = '#rails13') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails13"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "reyna@example.com"], ["author_name", "Ericka Robel"], ["body", "Quam eos voluptatem esse. Optio molestiae ut recusandae a omnis fuga quia. Ex sapiente corrupti asperiores accusantium voluptatem."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "mallie.schoen@example.org"], ["author_name", "Cristal Watsica"], ["body", "Eligendi non sit dolor sint."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "brianne.koelpin@example.com"], ["author_name", "Alexanne Eichmann Jr."], ["body", "Consequuntur ea ut nam."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "carol@example.net"], ["author_name", "Gina Bergnaum"], ["body", "Repellendus reiciendis aut placeat."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "julia@example.org"], ["author_name", "Robert Huel"], ["body", "Sit corrupti et voluptatibus. Necessitatibus vitae voluptatem sequi quo autem perferendis porro. Aut eum quibusdam voluptate totam."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "khalil@example.com"], ["author_name", "Willard Gutmann"], ["body", "Est unde sint fugit assumenda."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "francisco@example.com"], ["author_name", "Josefina West"], ["body", "Magni alias sint architecto unde ut autem nemo."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "graciela.marquardt@example.net"], ["author_name", "Madalyn Upton"], ["body", "Id fugit et vero incidunt sint dolores non."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "kariane_luettgen@example.net"], ["author_name", "Sherwood West"], ["body", "Facilis autem similique sit est. Quaerat cupiditate ad dolorem. Ut odit sunt sit tempore qui nisi deserunt."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "susie.blanda@example.org"], ["author_name", "Gus Ortiz"], ["body", "Quos et vel voluptates soluta qui sit."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "tracey.huel@example.net"], ["author_name", "Beau Mann"], ["body", "Sit perferendis aut occaecati nesciunt sunt omnis. Impedit voluptatem sit. Eligendi quis deserunt fugit."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "alexys@example.org"], ["author_name", "Nicolas Schimmel"], ["body", "Veniam iusto velit exercitationem. Voluptates ea impedit veritatis illo sit."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "hertha_pollich@example.net"], ["author_name", "Dalton Ryan"], ["body", "Inventore quaerat aut recusandae quod neque. Consequuntur nobis aspernatur. Est saepe ex quam sit."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "stella.predovic@example.org"], ["author_name", "Doyle Lueilwitz"], ["body", "Enim est laborum dolor."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "helena.schiller@example.net"], ["author_name", "Ms. Jaylan Hackett"], ["body", "Sed beatae cum. Laudantium quos omnis. Ipsam non nostrum error assumenda dolores."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments" WHERE "almanac_comments"."spam" = 't'  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'fugit-ut-14' LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 37], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["description", "Dolor voluptas iusto aut et iste cupiditate earum. Quia quos placeat illum. Quam distinctio cumque."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Architecto neque."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'architecto-consequatur-15' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 39], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["description", "Molestiae ratione aut id. Quisquam ipsam delectus eligendi laboriosam. Quae quia sit repudiandae earum enim molestiae vel. Est atque et perferendis omnis architecto quia."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et quas."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eligendi-ipsum-16' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 41], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["description", "Iusto atque vero quasi eos ex repellendus error. Autem eveniet repellendus animi. Qui dolores sed. Earum quis autem eius optio vero possimus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Commodi non animi ab est."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 43], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["description", "Aut enim excepturi veniam dolorum qui dolorem necessitatibus. Reiciendis rerum aut dolore. Sapiente in eos est porro repellat. Velit laudantium hic porro sit aut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Modi illo iure ut quam at dolor."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 45], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["description", "Omnis animi possimus illum qui tempora. Illum accusantium et aperiam nihil eligendi fugiat qui. Maxime quas sunt nihil at rem nam. Autem enim et consequatur. Accusamus quia omnis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Facilis deserunt."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consequuntur-at-17' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 44], ["blog_id", 1], ["body", "Aliquam aut et rerum aut. Vitae nihil aspernatur laborum quis sed nihil. Consequuntur quam aut. Eos harum perferendis autem hic delectus dignissimos. Non quis omnis temporibus molestiae facere."], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["excerpt", "Fuga."], ["published", true], ["slug", "consequuntur-at-17"], ["title", "Et velit sequi eaque distinctio et maxime."], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test19' OR lower(name) = 'rspec19' OR lower(name) = 'ruby19' OR lower(name) = '#rails19') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test19"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec19"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby19"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails19"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 47], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["description", "Sed quaerat ut dolor. Quaerat omnis impedit dolores deleniti. Itaque suscipit voluptas est perspiciatis voluptate. Ut quia laborum. Fuga illo eius."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et quia."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-quae-18' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 48], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00], ["description", "Quo assumenda dolor ab. Est et vero. Vero aut assumenda molestiae. Unde asperiores deleniti. Perferendis et ad et earum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Occaecati eos est quia aut incidunt."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dicta-voluptatem-19' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 49], ["blog_id", 1], ["body", "Deserunt similique dignissimos dolores laudantium. Sint at accusantium non amet dolorem. Architecto voluptas nisi fugiat magni. Debitis omnis id ab sed. Enim in enim. Repudiandae quod eum sed incidunt voluptatem."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Voluptatem enim neque."], ["published", true], ["slug", "dicta-voluptatem-19"], ["title", "Minima quibusdam provident in odio molestiae."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test21' OR lower(name) = 'rspec21' OR lower(name) = 'ruby21' OR lower(name) = '#rails21') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test21"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec21"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby21"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails21"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sed-voluptatibus-20' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 50], ["blog_id", 1], ["body", "Voluptatibus assumenda tempora sit nemo totam. Saepe consectetur dolore dicta voluptates. Eveniet molestiae voluptatem. Et doloremque corporis reprehenderit dolore earum. Expedita non rem ex ab ut autem porro. Sed quo sit modi rem atque maxime. Earum omnis sit."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Dicta sit sint est rem."], ["published", true], ["slug", "sed-voluptatibus-20"], ["title", "Ipsum dolorem et quas blanditiis."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test22' OR lower(name) = 'rspec22' OR lower(name) = 'ruby22' OR lower(name) = '#rails22') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test22' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test22"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec22"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby22"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails22"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.5ms) rollback transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 52], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["description", "Ea porro officiis quasi voluptatem. Quam neque rerum tempora id autem. Repellendus a repellat ea ipsam. Dolores deserunt ratione sint aut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aliquid voluptatem occaecati in."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quod-est-21' LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 54], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["description", "Exercitationem sapiente in dignissimos. Magnam natus nobis officiis et omnis. Et fugit voluptas pariatur quis. Consequatur optio necessitatibus ratione aspernatur veritatis voluptatem."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quisquam animi consequuntur sit cupiditate labore consequatur."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'repellendus-temporibus-22' LIMIT 1  (0.4ms) rollback transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'est-aut-23' LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 57], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["description", "Aut vitae dolorem. Sed enim nihil pariatur minima. Aperiam ex qui. Id sed excepturi quia est aut enim et."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Nemo eius."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'harum-deserunt-24' LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 58], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["description", "Fugiat accusantium delectus neque est non rerum eligendi. Molestiae blanditiis quas molestiae harum. Esse animi et odio."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Tenetur corrupti sit quia facilis aut velit."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'at-consectetur-25' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 59], ["blog_id", 1], ["body", "Beatae soluta sapiente officiis deleniti et. Qui dolorem repellat quia. Voluptas soluta occaecati sit. Esse et qui iste. Aut qui necessitatibus nostrum et quis. Et veniam nostrum et eius optio aut mollitia. Cum maiores nobis aspernatur."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Reprehenderit."], ["published", true], ["slug", "at-consectetur-25"], ["title", "Et ut iste."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test27' OR lower(name) = 'rspec27' OR lower(name) = 'ruby27' OR lower(name) = '#rails27') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test27"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec27"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby27"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails27"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nihil-exercitationem-26' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 60], ["blog_id", 1], ["body", "Consequatur eum omnis ea. Nulla ad odio asperiores. Qui voluptate porro a perspiciatis aut omnis delectus. Fugiat est adipisci. Non consequatur sunt. Ut dicta deleniti molestiae."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Et a omnis qui consequatur reprehenderit."], ["published", true], ["slug", "nihil-exercitationem-26"], ["title", "Ipsum aliquid omnis."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test28' OR lower(name) = 'rspec28' OR lower(name) = 'ruby28' OR lower(name) = '#rails28') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test28' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test28"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec28"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby28"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails28"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'impedit-totam-27' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 61], ["blog_id", 1], ["body", "Et ullam eveniet molestiae ea pariatur voluptas magnam. Voluptas fugiat praesentium voluptas labore sed. Natus sint iusto molestiae voluptate explicabo. Quas cumque quis. Quis et eaque consectetur quasi. Temporibus quaerat sunt ut."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Voluptatem."], ["published", true], ["slug", "impedit-totam-27"], ["title", "Distinctio est quis eum non."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test29' OR lower(name) = 'rspec29' OR lower(name) = 'ruby29' OR lower(name) = '#rails29') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails29"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sapiente-iste-28' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 62], ["blog_id", 1], ["body", "Deserunt harum quae eius id quia. Aliquid qui ex ipsa sapiente numquam. Sed recusandae officia fugiat in numquam. Occaecati harum est iusto. Eligendi nesciunt non quae eos omnis consequatur possimus."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Sit rerum alias nemo ex."], ["published", true], ["slug", "sapiente-iste-28"], ["title", "Sed impedit nesciunt sint veniam et."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test30' OR lower(name) = 'rspec30' OR lower(name) = 'ruby30' OR lower(name) = '#rails30') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails30"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'inventore-quos-29' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 63], ["blog_id", 1], ["body", "Dolores voluptas quis iste molestiae sit vitae consequuntur. Consequuntur maxime excepturi. Ut dolorum recusandae autem. Consequatur dolorum voluptate eveniet. Ab deserunt necessitatibus cupiditate eos qui a ut. Sit consequatur doloribus."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Tempora aut perferendis voluptatem."], ["published", false], ["slug", "inventore-quos-29"], ["title", "Impedit error deleniti porro."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test31' OR lower(name) = 'rspec31' OR lower(name) = 'ruby31' OR lower(name) = '#rails31') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails31"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-numquam-30' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 64], ["blog_id", 1], ["body", "Non dignissimos vel deserunt perspiciatis numquam. Architecto molestias omnis possimus suscipit. Voluptatem recusandae laboriosam labore non numquam non earum. Eligendi nemo exercitationem maiores nihil sed alias sit. Soluta aut ut. Ea omnis sit quaerat numquam officia et voluptas. Rerum laboriosam inventore eos voluptatum nostrum libero sint."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "In iure et aut officia dolorem."], ["published", false], ["slug", "et-numquam-30"], ["title", "Odio optio quia corrupti dolores."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test32' OR lower(name) = 'rspec32' OR lower(name) = 'ruby32' OR lower(name) = '#rails32') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails32"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ullam-eveniet-31' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 65], ["blog_id", 1], ["body", "Facilis voluptate sunt ducimus esse ullam. Aut recusandae omnis deleniti veritatis voluptas quo. Culpa suscipit vitae quia est qui tempora. Consequuntur quam aut. Eos harum perferendis autem hic delectus dignissimos. Non quis omnis temporibus molestiae facere."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Et velit sequi eaque distinctio."], ["published", false], ["slug", "ullam-eveniet-31"], ["title", "Ut iusto debitis."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test33' OR lower(name) = 'rspec33' OR lower(name) = 'ruby33' OR lower(name) = '#rails33') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test33"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec33"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby33"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails33"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 't'  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 66], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["description", "Voluptates expedita repellat. Totam rerum error rem. Sed officia non animi voluptatem."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "A excepturi."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-voluptas-32' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 67], ["blog_id", 1], ["body", "Beatae soluta sapiente officiis deleniti et. Qui dolorem repellat quia. Voluptas soluta occaecati sit. Esse et qui iste. Aut qui necessitatibus nostrum et quis. Et veniam nostrum et eius optio aut mollitia. Cum maiores nobis aspernatur."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Reprehenderit."], ["published", true], ["slug", "aut-voluptas-32"], ["title", "Sequi ex adipisci."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test34' OR lower(name) = 'rspec34' OR lower(name) = 'ruby34' OR lower(name) = '#rails34') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails34"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nihil-exercitationem-33' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 68], ["blog_id", 1], ["body", "Consequatur eum omnis ea. Nulla ad odio asperiores. Qui voluptate porro a perspiciatis aut omnis delectus. Fugiat est adipisci. Non consequatur sunt. Ut dicta deleniti molestiae."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Et a omnis qui consequatur reprehenderit."], ["published", true], ["slug", "nihil-exercitationem-33"], ["title", "Ipsum aliquid omnis."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test35' OR lower(name) = 'rspec35' OR lower(name) = 'ruby35' OR lower(name) = '#rails35') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test35' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails35"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'impedit-totam-34' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 69], ["blog_id", 1], ["body", "Et ullam eveniet molestiae ea pariatur voluptas magnam. Voluptas fugiat praesentium voluptas labore sed. Natus sint iusto molestiae voluptate explicabo. Quas cumque quis. Quis et eaque consectetur quasi. Temporibus quaerat sunt ut."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Voluptatem."], ["published", true], ["slug", "impedit-totam-34"], ["title", "Distinctio est quis eum non."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test36' OR lower(name) = 'rspec36' OR lower(name) = 'ruby36' OR lower(name) = '#rails36') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test36' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test36"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec36' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec36"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby36' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby36"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails36"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.2ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sapiente-iste-35' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 70], ["blog_id", 1], ["body", "Deserunt harum quae eius id quia. Aliquid qui ex ipsa sapiente numquam. Sed recusandae officia fugiat in numquam. Occaecati harum est iusto. Eligendi nesciunt non quae eos omnis consequatur possimus."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Sit rerum alias nemo ex."], ["published", false], ["slug", "sapiente-iste-35"], ["title", "Sed impedit nesciunt sint veniam et."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test37' OR lower(name) = 'rspec37' OR lower(name) = 'ruby37' OR lower(name) = '#rails37') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test37"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec37"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby37"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails37"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'inventore-quos-36' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 71], ["blog_id", 1], ["body", "Dolores voluptas quis iste molestiae sit vitae consequuntur. Consequuntur maxime excepturi. Ut dolorum recusandae autem. Consequatur dolorum voluptate eveniet. Ab deserunt necessitatibus cupiditate eos qui a ut. Sit consequatur doloribus."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Tempora aut perferendis voluptatem."], ["published", false], ["slug", "inventore-quos-36"], ["title", "Impedit error deleniti porro."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test38' OR lower(name) = 'rspec38' OR lower(name) = 'ruby38' OR lower(name) = '#rails38') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails38"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-numquam-37' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 72], ["blog_id", 1], ["body", "Non dignissimos vel deserunt perspiciatis numquam. Architecto molestias omnis possimus suscipit. Voluptatem recusandae laboriosam labore non numquam non earum. Eligendi nemo exercitationem maiores nihil sed alias sit. Soluta aut ut. Ea omnis sit quaerat numquam officia et voluptas. Rerum laboriosam inventore eos voluptatum nostrum libero sint."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "In iure et aut officia dolorem."], ["published", false], ["slug", "et-numquam-37"], ["title", "Odio optio quia corrupti dolores."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test39' OR lower(name) = 'rspec39' OR lower(name) = 'ruby39' OR lower(name) = '#rails39') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test39"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec39"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby39"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails39"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f'  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 73], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["description", "Fugiat accusantium delectus neque est non rerum eligendi. Molestiae blanditiis quas molestiae harum. Esse animi et odio."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Tenetur corrupti sit quia facilis aut velit."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'at-consectetur-38' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 74], ["blog_id", 1], ["body", "Beatae soluta sapiente officiis deleniti et. Qui dolorem repellat quia. Voluptas soluta occaecati sit. Esse et qui iste. Aut qui necessitatibus nostrum et quis. Et veniam nostrum et eius optio aut mollitia. Cum maiores nobis aspernatur."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Reprehenderit."], ["published", true], ["slug", "at-consectetur-38"], ["title", "Et ut iste."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test40' OR lower(name) = 'rspec40' OR lower(name) = 'ruby40' OR lower(name) = '#rails40') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test40"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec40"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby40"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails40"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nihil-exercitationem-39' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 75], ["blog_id", 1], ["body", "Consequatur eum omnis ea. Nulla ad odio asperiores. Qui voluptate porro a perspiciatis aut omnis delectus. Fugiat est adipisci. Non consequatur sunt. Ut dicta deleniti molestiae."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Et a omnis qui consequatur reprehenderit."], ["published", true], ["slug", "nihil-exercitationem-39"], ["title", "Ipsum aliquid omnis."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test41' OR lower(name) = 'rspec41' OR lower(name) = 'ruby41' OR lower(name) = '#rails41') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test41' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test41"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec41"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby41"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails41"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'impedit-totam-40' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 76], ["blog_id", 1], ["body", "Et ullam eveniet molestiae ea pariatur voluptas magnam. Voluptas fugiat praesentium voluptas labore sed. Natus sint iusto molestiae voluptate explicabo. Quas cumque quis. Quis et eaque consectetur quasi. Temporibus quaerat sunt ut."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Voluptatem."], ["published", true], ["slug", "impedit-totam-40"], ["title", "Distinctio est quis eum non."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test42' OR lower(name) = 'rspec42' OR lower(name) = 'ruby42' OR lower(name) = '#rails42') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test42' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails42"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sapiente-iste-41' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 77], ["blog_id", 1], ["body", "Deserunt harum quae eius id quia. Aliquid qui ex ipsa sapiente numquam. Sed recusandae officia fugiat in numquam. Occaecati harum est iusto. Eligendi nesciunt non quae eos omnis consequatur possimus."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Sit rerum alias nemo ex."], ["published", true], ["slug", "sapiente-iste-41"], ["title", "Sed impedit nesciunt sint veniam et."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test43' OR lower(name) = 'rspec43' OR lower(name) = 'ruby43' OR lower(name) = '#rails43') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test43' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test43"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec43"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby43"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails43"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'inventore-quos-42' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 78], ["blog_id", 1], ["body", "Dolores voluptas quis iste molestiae sit vitae consequuntur. Consequuntur maxime excepturi. Ut dolorum recusandae autem. Consequatur dolorum voluptate eveniet. Ab deserunt necessitatibus cupiditate eos qui a ut. Sit consequatur doloribus."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Tempora aut perferendis voluptatem."], ["published", true], ["slug", "inventore-quos-42"], ["title", "Impedit error deleniti porro."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test44' OR lower(name) = 'rspec44' OR lower(name) = 'ruby44' OR lower(name) = '#rails44') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test44"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec44"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby44"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails44"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-numquam-43' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 79], ["blog_id", 1], ["body", "Non dignissimos vel deserunt perspiciatis numquam. Architecto molestias omnis possimus suscipit. Voluptatem recusandae laboriosam labore non numquam non earum. Eligendi nemo exercitationem maiores nihil sed alias sit. Soluta aut ut. Ea omnis sit quaerat numquam officia et voluptas. Rerum laboriosam inventore eos voluptatum nostrum libero sint."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "In iure et aut officia dolorem."], ["published", true], ["slug", "et-numquam-43"], ["title", "Odio optio quia corrupti dolores."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test45' OR lower(name) = 'rspec45' OR lower(name) = 'ruby45' OR lower(name) = '#rails45') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test45"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec45"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby45"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails45"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ullam-eveniet-44' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 80], ["blog_id", 1], ["body", "Facilis voluptate sunt ducimus esse ullam. Aut recusandae omnis deleniti veritatis voluptas quo. Culpa suscipit vitae quia est qui tempora. Consequuntur quam aut. Eos harum perferendis autem hic delectus dignissimos. Non quis omnis temporibus molestiae facere."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Et velit sequi eaque distinctio."], ["published", true], ["slug", "ullam-eveniet-44"], ["title", "Ut iusto debitis."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test46' OR lower(name) = 'rspec46' OR lower(name) = 'ruby46' OR lower(name) = '#rails46') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails46"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'molestiae-sit-45' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 81], ["blog_id", 1], ["body", "Iure placeat porro. Iste repellendus reiciendis quo recusandae labore non. Quia eum nobis. Aut non consequatur. Nemo laborum eligendi doloremque molestiae natus mollitia officia. Aut esse molestiae accusamus eveniet."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Ut dolorem."], ["published", true], ["slug", "molestiae-sit-45"], ["title", "Facilis deserunt quisquam."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test47' OR lower(name) = 'rspec47' OR lower(name) = 'ruby47' OR lower(name) = '#rails47') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails47"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'corporis-qui-46' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 82], ["blog_id", 1], ["body", "Voluptate eligendi ad aliquid mollitia similique qui. Rerum amet nisi id quisquam maiores. Soluta occaecati ullam reiciendis odio harum. Nam ut molestias rem sit amet quo. Sit corrupti omnis qui ab voluptatem."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Occaecati quo molestiae voluptatem quia repudiandae."], ["published", true], ["slug", "corporis-qui-46"], ["title", "Ex minus dolore perferendis soluta veniam assumenda."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test48' OR lower(name) = 'rspec48' OR lower(name) = 'ruby48' OR lower(name) = '#rails48') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails48"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consectetur-ipsa-47' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 83], ["blog_id", 1], ["body", "Itaque suscipit voluptas est perspiciatis voluptate. Ut quia laborum. Fuga illo eius. Occaecati eos est quia aut incidunt voluptatem. Et dolores rem optio et. Est laborum deleniti suscipit incidunt. Iste qui vitae et porro quos blanditiis."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Quaerat omnis impedit."], ["published", true], ["slug", "consectetur-ipsa-47"], ["title", "Voluptatem voluptatem sed non."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test49' OR lower(name) = 'rspec49' OR lower(name) = 'ruby49' OR lower(name) = '#rails49') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails49"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ut-consectetur-48' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 84], ["blog_id", 1], ["body", "Doloribus molestias illum quo molestiae. Dolorem at aliquam ad facere facilis et itaque. Tempora magni molestias aliquid rerum. Error possimus nesciunt voluptatem unde eaque. Reiciendis non sunt sed voluptas est. Reiciendis qui rerum."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Facilis."], ["published", true], ["slug", "ut-consectetur-48"], ["title", "Unde asperiores deleniti."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ut-atque-49' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 85], ["blog_id", 1], ["body", "Hic velit omnis laudantium aut quis. Iusto dolor ut. Voluptatibus assumenda tempora sit nemo totam. Saepe consectetur dolore dicta voluptates. Eveniet molestiae voluptatem. Et doloremque corporis reprehenderit dolore earum. Expedita non rem ex ab ut autem porro."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Suscipit."], ["published", true], ["slug", "ut-atque-49"], ["title", "Incidunt officia molestias omnis."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_2f6e05e ON posts_taggings_2f6e05e.taggable_id = almanac_posts.id AND posts_taggings_2f6e05e.taggable_type = 'Almanac::Post' AND posts_taggings_2f6e05e.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 86], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["description", "Numquam minima placeat alias qui sint. Fugit voluptatibus qui facere quo et omnis. Aut tempora fugiat voluptatum mollitia totam. Ut repellendus odio accusantium dolor dolores."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Autem ut amet sapiente et."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sit-non-50' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 87], ["blog_id", 1], ["body", "Voluptates odio commodi. Assumenda et recusandae fugit quaerat. Cumque consequuntur eos a nostrum. Perspiciatis nulla saepe nisi. Ea porro officiis quasi voluptatem."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Officiis."], ["published", true], ["slug", "sit-non-50"], ["title", "Laudantium distinctio sunt maiores."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test50' OR lower(name) = 'rspec50' OR lower(name) = 'ruby50' OR lower(name) = '#rails50') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails50"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'autem-voluptatem-51' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 88], ["blog_id", 1], ["body", "Nihil eos aliquam. Ad officiis accusantium sequi tempora qui. Dolores deserunt provident ea rerum. Quibusdam omnis et iure. Est fugiat beatae iure magni. Et ducimus quo nihil debitis ratione necessitatibus voluptatem."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Et."], ["published", true], ["slug", "autem-voluptatem-51"], ["title", "Quam neque rerum tempora id autem."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test51' OR lower(name) = 'rspec51' OR lower(name) = 'ruby51' OR lower(name) = '#rails51') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test51' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails51"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'accusantium-eveniet-52' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 89], ["blog_id", 1], ["body", "Eveniet nulla soluta officiis repellat. Perferendis aliquam odit. Est voluptatibus cupiditate. Consequuntur quidem consectetur rerum quia nihil quia voluptatibus. Excepturi eveniet officia at asperiores ab nisi."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Repellendus incidunt voluptatem veniam."], ["published", true], ["slug", "accusantium-eveniet-52"], ["title", "Hic nostrum placeat nihil omnis."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test52' OR lower(name) = 'rspec52' OR lower(name) = 'ruby52' OR lower(name) = '#rails52') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test52' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby52"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails52"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'porro-sapiente-53' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 90], ["blog_id", 1], ["body", "Cupiditate nemo odit non. Similique fuga ducimus. Qui explicabo blanditiis maxime laudantium. Earum qui rerum quia in ullam et accusantium. Nemo commodi placeat a et."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Perferendis voluptate eius accusamus animi deleniti."], ["published", true], ["slug", "porro-sapiente-53"], ["title", "Dolorem sed eaque quis est doloremque."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test53' OR lower(name) = 'rspec53' OR lower(name) = 'ruby53' OR lower(name) = '#rails53') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails53"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'in-ea-54' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 91], ["blog_id", 1], ["body", "Et sequi asperiores qui. Et rerum maiores officiis a odio sit velit. Ullam nihil asperiores. Ad dolores doloribus omnis distinctio ea. Non qui voluptas."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Consequatur ullam asperiores commodi consequatur."], ["published", true], ["slug", "in-ea-54"], ["title", "Doloremque quaerat qui."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test54' OR lower(name) = 'rspec54' OR lower(name) = 'ruby54' OR lower(name) = '#rails54') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails54"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-deserunt-55' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 92], ["blog_id", 1], ["body", "Et accusantium et non. Et delectus error quam molestiae. Voluptatem et beatae vero deleniti. Occaecati iure eligendi iusto laudantium dolorem. Voluptas quibusdam quidem autem dolores totam."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Accusamus."], ["published", true], ["slug", "qui-deserunt-55"], ["title", "Doloremque consequatur unde est illum consectetur vitae."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test55' OR lower(name) = 'rspec55' OR lower(name) = 'ruby55' OR lower(name) = '#rails55') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails55"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.2ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sed-cupiditate-56' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 93], ["blog_id", 1], ["body", "Assumenda recusandae nisi. Maiores aut aperiam commodi nobis. Earum et assumenda dolor ullam unde sit. Non dolore rerum distinctio. Autem quasi sed est."], ["created_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["excerpt", "Ut repellendus et."], ["published", true], ["slug", "sed-cupiditate-56"], ["title", "Aut ea est earum."], ["updated_at", Fri, 28 Dec 2012 04:47:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test56' OR lower(name) = 'rspec56' OR lower(name) = 'ruby56' OR lower(name) = '#rails56') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test56' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails56"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.2ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'illum-non-57' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 94], ["blog_id", 1], ["body", "Provident consequuntur iure aut. Nisi optio distinctio. Inventore quod illum. Similique tenetur eveniet. Aut beatae vitae cumque consectetur voluptas vel pariatur."], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["excerpt", "Esse aut placeat consequatur molestiae tempora."], ["published", true], ["slug", "illum-non-57"], ["title", "Est provident similique debitis unde nihil."], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test57' OR lower(name) = 'rspec57' OR lower(name) = 'ruby57' OR lower(name) = '#rails57') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails57"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'fugit-quia-58' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 95], ["blog_id", 1], ["body", "Dolores corrupti rerum minima dolores quisquam dolorem est. Et minima eos voluptas blanditiis. Doloribus sint et iste recusandae ea. Numquam maxime qui. Maxime et itaque quasi ut."], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["excerpt", "Architecto."], ["published", true], ["slug", "fugit-quia-58"], ["title", "Quidem ratione ipsa quod et maxime rerum."], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test58' OR lower(name) = 'rspec58' OR lower(name) = 'ruby58' OR lower(name) = '#rails58') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails58"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aliquid-ut-59' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 96], ["blog_id", 1], ["body", "Rerum voluptas nam facere cumque. In qui eveniet qui consequatur. Aut et vitae ea porro ut qui illum. Quod corporis culpa iusto sapiente. Optio necessitatibus officia cupiditate consequatur ut atque. Pariatur quod ut non qui quia unde. Id velit dolores suscipit ut sint."], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["excerpt", "Necessitatibus."], ["published", true], ["slug", "aliquid-ut-59"], ["title", "Doloremque rem inventore exercitationem et officia omnis."], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test59' OR lower(name) = 'rspec59' OR lower(name) = 'ruby59' OR lower(name) = '#rails59') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails59"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolorem-ut-60' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 97], ["blog_id", 1], ["body", "Amet distinctio aut libero ea. Laborum voluptatem corrupti in nisi. Perferendis sapiente inventore. Commodi laboriosam molestias dolores similique voluptas consectetur quo. Omnis tempore qui ducimus non."], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["excerpt", "Recusandae autem."], ["published", false], ["slug", "dolorem-ut-60"], ["title", "Id et beatae aut ea voluptates sit."], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test60' OR lower(name) = 'rspec60' OR lower(name) = 'ruby60' OR lower(name) = '#rails60') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails60"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 42 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 42], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 43 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 43], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 44 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 44], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 45 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 45], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-aut-61' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 98], ["blog_id", 1], ["body", "Totam atque facilis est. Perferendis qui est enim laudantium. Mollitia ut reprehenderit temporibus aut quae perferendis. Blanditiis reiciendis nostrum. Ratione voluptatibus sed sint harum atque voluptatem."], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["excerpt", "Sequi reiciendis natus eaque voluptatem."], ["published", false], ["slug", "aut-aut-61"], ["title", "Iusto consequatur dolorem est suscipit repudiandae sunt laboriosam."], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test61' OR lower(name) = 'rspec61' OR lower(name) = 'ruby61' OR lower(name) = '#rails61') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails61"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 46 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 46], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 47 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 47], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 48 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 48], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 49 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 49], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_9ae625d ON posts_taggings_9ae625d.taggable_id = almanac_posts.id AND posts_taggings_9ae625d.taggable_type = 'Almanac::Post' AND posts_taggings_9ae625d.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'alf@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "alf@example.org"], ["encrypted_password", "$2a$04$K4mAXVMaJWkmR.VhnjICkuhyyPeJukT9MRUZt2h44VbpZvhz9yA8C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 99], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["description", "In mollitia natus dignissimos aut. Libero nulla ratione eum. Autem nemo et. Eveniet magnam voluptatem porro deleniti necessitatibus explicabo."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aliquam eum sed quaerat a aspernatur voluptatem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quaerat-occaecati-62' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 100], ["blog_id", 1], ["body", "Consectetur ut numquam sunt non est. Enim et sint quam pariatur vel. Ut error dolor laudantium dolorum corrupti voluptatem. Et qui mollitia fugiat modi ex iure pariatur. Consequuntur vel tempore sunt temporibus. Aspernatur fugit ut delectus sit qui. Maiores vel est repellendus."], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["excerpt", "Distinctio vel sit."], ["published", true], ["slug", "quaerat-occaecati-62"], ["title", "Error in iusto et sit."], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test62' OR lower(name) = 'rspec62' OR lower(name) = 'ruby62' OR lower(name) = '#rails62') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails62"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-omnis-63' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 101], ["blog_id", 1], ["body", "Qui repudiandae enim ut aliquid doloremque magni. Sint quia sed quisquam tempore consectetur quia assumenda. Aliquam quidem incidunt qui reiciendis vel magnam officiis. Omnis et nulla voluptas atque. Aut labore magnam. Optio molestias porro quia."], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["excerpt", "Sed hic."], ["published", true], ["slug", "et-omnis-63"], ["title", "Recusandae veniam maiores rerum."], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test63' OR lower(name) = 'rspec63' OR lower(name) = 'ruby63' OR lower(name) = '#rails63') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test63' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test63"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec63"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby63"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails63"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ea-praesentium-64' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 102], ["blog_id", 1], ["body", "Asperiores commodi dicta sapiente est eligendi. Explicabo accusantium saepe est recusandae. Blanditiis consequuntur dignissimos voluptatem expedita distinctio illo similique. Explicabo enim ducimus quia sed qui blanditiis. Qui error voluptatem occaecati porro est minus qui."], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["excerpt", "Debitis voluptatem animi."], ["published", true], ["slug", "ea-praesentium-64"], ["title", "Cumque nesciunt tempora voluptate quia molestias."], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test64' OR lower(name) = 'rspec64' OR lower(name) = 'ruby64' OR lower(name) = '#rails64') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails64"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ratione-vitae-65' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 103], ["blog_id", 1], ["body", "Ab ut ut dicta voluptatibus. Nulla consequuntur fuga enim est quia. Veniam non iure. Iste impedit fugiat. Adipisci neque cupiditate incidunt magni ut. Similique ab numquam. Explicabo magnam neque corporis."], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["excerpt", "Pariatur itaque similique accusantium."], ["published", true], ["slug", "ratione-vitae-65"], ["title", "Repudiandae veritatis tempore est ut odit illum quis."], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test65' OR lower(name) = 'rspec65' OR lower(name) = 'ruby65' OR lower(name) = '#rails65') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails65"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolores-id-66' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 104], ["blog_id", 1], ["body", "Atque omnis architecto libero. Totam et explicabo eveniet sed vel. Maiores aut autem molestiae mollitia nihil vero. Commodi rerum fugit enim qui. Quos cupiditate ex vero. Tenetur ut voluptates deleniti aut. Consectetur provident voluptas eum sapiente dicta voluptatem."], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["excerpt", "Laborum dolorum ut eos eligendi."], ["published", true], ["slug", "dolores-id-66"], ["title", "Enim non laboriosam mollitia repellendus."], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test66' OR lower(name) = 'rspec66' OR lower(name) = 'ruby66' OR lower(name) = '#rails66') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails66"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 13ms (Views: 5.1ms | ActiveRecord: 0.1ms) Almanac::Post Load (0.3ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0  (2.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'thurman@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "thurman@example.net"], ["encrypted_password", "$2a$04$w1qcgB0KUwvAloVcu9EM6uyDfizVUvANDxEoDt7dg4AGB9OHDrdB."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.8ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 105], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["description", "Numquam praesentium eaque temporibus dolor. Distinctio atque reiciendis. Voluptatibus occaecati eligendi aut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Eos dignissimos est unde laudantium qui culpa."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quasi-eum-67' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 106], ["blog_id", 1], ["body", "Delectus id natus eum et non quaerat. Porro commodi unde ut asperiores sit laudantium ipsam. Vel laudantium est sequi. In dolor quia ea quidem quam officia rerum. Ipsa quisquam sit magnam pariatur magni earum et. Voluptatem quia laborum quos et temporibus culpa."], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["excerpt", "Enim et et dignissimos."], ["published", false], ["slug", "quasi-eum-67"], ["title", "Id nulla sit quibusdam eos dolorem et."], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test67' OR lower(name) = 'rspec67' OR lower(name) = 'ruby67' OR lower(name) = '#rails67') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test67' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec67' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails67"]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.2ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ea-aut-68' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 107], ["blog_id", 1], ["body", "Assumenda ut nihil id. Dolores sed quo et quae iusto qui. Eos nihil suscipit quo. Beatae voluptatum voluptatem nemo veniam. In id aut autem beatae eum sed doloremque. Cumque non maxime dicta aut."], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["excerpt", "Ut consequuntur."], ["published", false], ["slug", "ea-aut-68"], ["title", "Quod maiores mollitia ea."], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test68' OR lower(name) = 'rspec68' OR lower(name) = 'ruby68' OR lower(name) = '#rails68') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test68' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails68"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sed-nesciunt-69' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 108], ["blog_id", 1], ["body", "Rem praesentium sapiente magnam reprehenderit quia dolorem. Tempora iste laudantium alias ea. Ratione deleniti aperiam saepe inventore ipsam nobis quis. Dignissimos impedit aspernatur ipsam quaerat omnis ut ad. Veniam sit autem asperiores assumenda. Unde sed assumenda."], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["excerpt", "Ut impedit tempora aliquid in non."], ["published", false], ["slug", "sed-nesciunt-69"], ["title", "Facilis aut aut excepturi natus omnis deleniti."], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test69' OR lower(name) = 'rspec69' OR lower(name) = 'ruby69' OR lower(name) = '#rails69') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails69"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 6ms (Views: 1.6ms | ActiveRecord: 0.1ms) Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f' ORDER BY written_at DESC, id DESC  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'annalise@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "annalise@example.org"], ["encrypted_password", "$2a$04$gymls1GPIz7JZTYhGEQ5Ue0.IkoFDto8OxqXP2n6YQWN8H9hwFKlK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 109], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["description", "Quisquam inventore et. In suscipit reiciendis aliquam. Voluptas ut similique soluta et. Magnam explicabo praesentium dolor voluptatum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Praesentium id."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 6ms (Views: 1.6ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jany_boyle@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jany_boyle@example.com"], ["encrypted_password", "$2a$04$UQr.rzUHZXX5B0sDcTPU.OPOZbkn0ujh8xb.oZLPACuYKyzjHdJ/6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 110], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["description", "In mollitia natus dignissimos aut. Libero nulla ratione eum. Autem nemo et. Eveniet magnam voluptatem porro deleniti necessitatibus explicabo."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aliquam eum sed quaerat a aspernatur voluptatem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quaerat-occaecati-70' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 111], ["blog_id", 1], ["body", "Consectetur ut numquam sunt non est. Enim et sint quam pariatur vel. Ut error dolor laudantium dolorum corrupti voluptatem. Et qui mollitia fugiat modi ex iure pariatur. Consequuntur vel tempore sunt temporibus. Aspernatur fugit ut delectus sit qui. Maiores vel est repellendus."], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["excerpt", "Distinctio vel sit."], ["published", true], ["slug", "quaerat-occaecati-70"], ["title", "Error in iusto et sit."], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test70' OR lower(name) = 'rspec70' OR lower(name) = 'ruby70' OR lower(name) = '#rails70') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails70"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (39.5ms) SELECT COUNT(*) FROM "almanac_posts"  Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."post_id" = 1 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5) SQL (0.2ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 37ms (ActiveRecord: 1.5ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"   (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'bernardo.hoppe@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "bernardo.hoppe@example.net"], ["encrypted_password", "$2a$04$e1tILJrIxGhWhmo2GgaVEOsWzN9WiBmKX18vom3Ku6jhPdVl5saDa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 112], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["description", "Ullam rem enim iste molestiae atque ut. Laborum natus deserunt repellendus ducimus. Dolore est aliquid qui quod assumenda. Delectus porro qui. Quod et tempore distinctio perspiciatis est veniam esse."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Voluptates vitae hic."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'fugiat-reprehenderit-71' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 113], ["blog_id", 1], ["body", "Vel consequatur corrupti nisi quos voluptatem molestias quam. Enim sed aut quibusdam. Illo fuga in culpa aut. Alias repellat maiores quis amet nemo blanditiis. Qui ea quos ex ut."], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["excerpt", "Quia."], ["published", true], ["slug", "fugiat-reprehenderit-71"], ["title", "Quod et aliquid sed."], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test71' OR lower(name) = 'rspec71' OR lower(name) = 'ruby71' OR lower(name) = '#rails71') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails71"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."post_id" = 1 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 11ms (ActiveRecord: 0.9ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jany_boyle@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jany_boyle@example.com"], ["encrypted_password", "$2a$04$kzj73SEFo7hR/DQf75B53.nvbYXVT7yLknIJgVOsWy234PosPXYfS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 114], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["description", "In mollitia natus dignissimos aut. Libero nulla ratione eum. Autem nemo et. Eveniet magnam voluptatem porro deleniti necessitatibus explicabo."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aliquam eum sed quaerat a aspernatur voluptatem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quaerat-occaecati-72' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 115], ["blog_id", 1], ["body", "Consectetur ut numquam sunt non est. Enim et sint quam pariatur vel. Ut error dolor laudantium dolorum corrupti voluptatem. Et qui mollitia fugiat modi ex iure pariatur. Consequuntur vel tempore sunt temporibus. Aspernatur fugit ut delectus sit qui. Maiores vel est repellendus."], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["excerpt", "Distinctio vel sit."], ["published", true], ["slug", "quaerat-occaecati-72"], ["title", "Error in iusto et sit."], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test72' OR lower(name) = 'rspec72' OR lower(name) = 'ruby72' OR lower(name) = '#rails72') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails72"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-omnis-73' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 116], ["blog_id", 1], ["body", "Qui repudiandae enim ut aliquid doloremque magni. Sint quia sed quisquam tempore consectetur quia assumenda. Aliquam quidem incidunt qui reiciendis vel magnam officiis. Omnis et nulla voluptas atque. Aut labore magnam. Optio molestias porro quia."], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["excerpt", "Sed hic."], ["published", true], ["slug", "et-omnis-73"], ["title", "Recusandae veniam maiores rerum."], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test73' OR lower(name) = 'rspec73' OR lower(name) = 'ruby73' OR lower(name) = '#rails73') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test73' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails73"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ea-praesentium-74' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 117], ["blog_id", 1], ["body", "Asperiores commodi dicta sapiente est eligendi. Explicabo accusantium saepe est recusandae. Blanditiis consequuntur dignissimos voluptatem expedita distinctio illo similique. Explicabo enim ducimus quia sed qui blanditiis. Qui error voluptatem occaecati porro est minus qui."], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["excerpt", "Debitis voluptatem animi."], ["published", true], ["slug", "ea-praesentium-74"], ["title", "Cumque nesciunt tempora voluptate quia molestias."], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test74' OR lower(name) = 'rspec74' OR lower(name) = 'ruby74' OR lower(name) = '#rails74') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails74"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ratione-vitae-75' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 118], ["blog_id", 1], ["body", "Ab ut ut dicta voluptatibus. Nulla consequuntur fuga enim est quia. Veniam non iure. Iste impedit fugiat. Adipisci neque cupiditate incidunt magni ut. Similique ab numquam. Explicabo magnam neque corporis."], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["excerpt", "Pariatur itaque similique accusantium."], ["published", true], ["slug", "ratione-vitae-75"], ["title", "Repudiandae veritatis tempore est ut odit illum quis."], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test75' OR lower(name) = 'rspec75' OR lower(name) = 'ruby75' OR lower(name) = '#rails75') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails75' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails75"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolores-id-76' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 119], ["blog_id", 1], ["body", "Atque omnis architecto libero. Totam et explicabo eveniet sed vel. Maiores aut autem molestiae mollitia nihil vero. Commodi rerum fugit enim qui. Quos cupiditate ex vero. Tenetur ut voluptates deleniti aut. Consectetur provident voluptas eum sapiente dicta voluptatem."], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["excerpt", "Laborum dolorum ut eos eligendi."], ["published", true], ["slug", "dolores-id-76"], ["title", "Enim non laboriosam mollitia repellendus."], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test76' OR lower(name) = 'rspec76' OR lower(name) = 'ruby76' OR lower(name) = '#rails76') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails76"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Parameters: {"tag_name"=>"common"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common') Completed 200 OK in 50ms (Views: 2.3ms | ActiveRecord: 0.2ms) Almanac::Post Load (0.3ms) SELECT "almanac_posts".* FROM "almanac_posts" JOIN taggings posts_taggings_f0acec6 ON posts_taggings_f0acec6.taggable_id = almanac_posts.id AND posts_taggings_f0acec6.taggable_type = 'Almanac::Post' AND posts_taggings_f0acec6.tag_id = 1 WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'franz_gottlieb@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "franz_gottlieb@example.net"], ["encrypted_password", "$2a$04$leBZhQ/ZkR1Or4wwvFoszOrbM5LFRcg79ZvcUHH9T0J1oOi8B1jh6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 120], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["description", "Eum molestias veritatis in. Aut voluptatem et. Illo dolores in dolorem aut. Animi in earum aut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Totam est autem in est."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 7ms (Views: 1.6ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jany_boyle@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jany_boyle@example.com"], ["encrypted_password", "$2a$04$Ezef8C8CG49HA6hXL2fkEuN365VbxXui6eXZtEBdWI1.5NO6Vv026"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 121], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["description", "In mollitia natus dignissimos aut. Libero nulla ratione eum. Autem nemo et. Eveniet magnam voluptatem porro deleniti necessitatibus explicabo."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aliquam eum sed quaerat a aspernatur voluptatem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Error in iusto et sit.", "slug"=>"quaerat-occaecati-77", "excerpt"=>"Distinctio vel sit.", "body"=>"Consectetur ut numquam sunt non est. Enim et sint quam pariatur vel. Ut error dolor laudantium dolorum corrupti voluptatem. Et qui mollitia fugiat modi ex iure pariatur. Consequuntur vel tempore sunt temporibus. Aspernatur fugit ut delectus sit qui. Maiores vel est repellendus.", "published"=>true, "tag_list"=>"common,test77,rspec77,ruby77,#rails77", "author_id"=>"122", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quaerat-occaecati-77' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Consectetur ut numquam sunt non est. Enim et sint quam pariatur vel. Ut error dolor laudantium dolorum corrupti voluptatem. Et qui mollitia fugiat modi ex iure pariatur. Consequuntur vel tempore sunt temporibus. Aspernatur fugit ut delectus sit qui. Maiores vel est repellendus."], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["excerpt", "Distinctio vel sit."], ["published", true], ["slug", "quaerat-occaecati-77"], ["title", "Error in iusto et sit."], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test77' OR lower(name) = 'rspec77' OR lower(name) = 'ruby77' OR lower(name) = '#rails77') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test77"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec77"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby77"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails77"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 28ms (ActiveRecord: 2.4ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"   (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'bernardo.hoppe@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "bernardo.hoppe@example.net"], ["encrypted_password", "$2a$04$OFh/V9/kPMNXUqxZaGH7TerMd7rbLMGzyY4lcbM0Ac/pPcDkFdepW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 123], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["description", "Ullam rem enim iste molestiae atque ut. Laborum natus deserunt repellendus ducimus. Dolore est aliquid qui quod assumenda. Delectus porro qui. Quod et tempore distinctio perspiciatis est veniam esse."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Voluptates vitae hic."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Quod et aliquid sed.", "slug"=>"fugiat-reprehenderit-78", "excerpt"=>"Quia.", "body"=>"Vel consequatur corrupti nisi quos voluptatem molestias quam. Enim sed aut quibusdam. Illo fuga in culpa aut. Alias repellat maiores quis amet nemo blanditiis. Qui ea quos ex ut.", "published"=>true, "tag_list"=>"common,test78,rspec78,ruby78,#rails78", "author_id"=>"124", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'fugiat-reprehenderit-78' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Vel consequatur corrupti nisi quos voluptatem molestias quam. Enim sed aut quibusdam. Illo fuga in culpa aut. Alias repellat maiores quis amet nemo blanditiis. Qui ea quos ex ut."], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["excerpt", "Quia."], ["published", true], ["slug", "fugiat-reprehenderit-78"], ["title", "Quod et aliquid sed."], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test78' OR lower(name) = 'rspec78' OR lower(name) = 'ruby78' OR lower(name) = '#rails78') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test78"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec78"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby78"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails78"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 27ms (ActiveRecord: 2.3ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jany_boyle@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jany_boyle@example.com"], ["encrypted_password", "$2a$04$0TMjF6nGnTkh4uvyyMjOZ.Wt/hNxEYbQnF8JR4f39LJzFLgwImyYW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.4ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 125], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00], ["description", "In mollitia natus dignissimos aut. Libero nulla ratione eum. Autem nemo et. Eveniet magnam voluptatem porro deleniti necessitatibus explicabo."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aliquam eum sed quaerat a aspernatur voluptatem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"impedit-consequatur-79", "excerpt"=>"Eos.", "body"=>"Itaque reiciendis distinctio. Consectetur ut numquam sunt non est. Enim et sint quam pariatur vel. Ut error dolor laudantium dolorum corrupti voluptatem. Et qui mollitia fugiat modi ex iure pariatur. Consequuntur vel tempore sunt temporibus. Aspernatur fugit ut delectus sit qui.", "published"=>true, "tag_list"=>"common,test79,rspec79,ruby79,#rails79", "author_id"=>"126", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'impedit-consequatur-79' LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 12ms (Views: 2.3ms | ActiveRecord: 0.4ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'malcolm_romaguera@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "malcolm_romaguera@example.net"], ["encrypted_password", "$2a$04$YBwfQMrvaGZzK07PTK0hYOtvJxqdSupx8J/qJ0BmbLsRzBYkVWUlm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.7ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 127], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["description", "Voluptates vitae hic nisi. Ullam rem enim iste molestiae atque ut. Laborum natus deserunt repellendus ducimus. Dolore est aliquid qui quod assumenda. Delectus porro qui."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aut aspernatur."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"commodi-in-80", "excerpt"=>"Eius incidunt quo voluptas porro.", "body"=>"Corporis amet voluptas. Quia voluptas eum. Tempora quisquam voluptate corrupti eos tenetur. At ut sequi ut voluptatibus. Voluptas deserunt eum doloremque beatae amet et. Alias quas totam mollitia in nulla culpa.", "published"=>true, "tag_list"=>"common,test80,rspec80,ruby80,#rails80", "author_id"=>"128", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'commodi-in-80' LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 1.6ms | ActiveRecord: 0.5ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jany_boyle@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jany_boyle@example.com"], ["encrypted_password", "$2a$04$9zxiMSer7XwUXBJ.SibBvO3nXvURqmEQBYNyEuoBZNdEAwN.Q8aSm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 129], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["description", "In mollitia natus dignissimos aut. Libero nulla ratione eum. Autem nemo et. Eveniet magnam voluptatem porro deleniti necessitatibus explicabo."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aliquam eum sed quaerat a aspernatur voluptatem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quaerat-occaecati-81' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 130], ["blog_id", 1], ["body", "Consectetur ut numquam sunt non est. Enim et sint quam pariatur vel. Ut error dolor laudantium dolorum corrupti voluptatem. Et qui mollitia fugiat modi ex iure pariatur. Consequuntur vel tempore sunt temporibus. Aspernatur fugit ut delectus sit qui. Maiores vel est repellendus."], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["excerpt", "Distinctio vel sit."], ["published", true], ["slug", "quaerat-occaecati-81"], ["title", "Error in iusto et sit."], ["updated_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test81' OR lower(name) = 'rspec81' OR lower(name) = 'ruby81' OR lower(name) = '#rails81') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test81"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec81"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby81"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails81"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Testz", "slug"=>"distinctio-aut-82", "excerpt"=>"Molestiae.", "body"=>"Quas similique ipsum rem sit dicta. Qui repudiandae enim ut aliquid doloremque magni. Sint quia sed quisquam tempore consectetur quia assumenda. Aliquam quidem incidunt qui reiciendis vel magnam officiis. Omnis et nulla voluptas atque. Aut labore magnam.", "published"=>true, "tag_list"=>"common,test82,rspec82,ruby82,#rails82", "author_id"=>"131", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'distinctio-aut-82' AND "almanac_posts"."id" != 1) LIMIT 1  (0.1ms) UPDATE "almanac_posts" SET "title" = 'Testz', "slug" = 'distinctio-aut-82', "excerpt" = 'Molestiae.', "body" = 'Quas similique ipsum rem sit dicta. Qui repudiandae enim ut aliquid doloremque magni. Sint quia sed quisquam tempore consectetur quia assumenda. Aliquam quidem incidunt qui reiciendis vel magnam officiis. Omnis et nulla voluptas atque. Aut labore magnam.', "author_id" = 131, "updated_at" = '2012-12-28 04:47:34.116548' WHERE "almanac_posts"."id" = 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test82' OR lower(name) = 'rspec82' OR lower(name) = 'ruby82' OR lower(name) = '#rails82') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test82' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test82"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec82"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby82"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails82"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."tagger_type" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."context" = 'tags' AND "taggings"."tag_id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 37ms (ActiveRecord: 3.0ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'abdiel@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "abdiel@example.org"], ["encrypted_password", "$2a$04$7XiDAkezmUvjKtScrW4fTeo6qb8zYmGVqkWt4UHwvcpi.gBcsT0We"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 132], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["description", "Corrupti neque ut qui eum enim repellendus. Dignissimos nostrum iste unde placeat ut voluptatem. Eum ad dolor sapiente at dicta est quidem. Alias non aliquid quia saepe praesentium veniam. Molestias asperiores quaerat quam sit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Repellendus vel amet pariatur et facilis nostrum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.4ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'cupiditate-nisi-83' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 133], ["blog_id", 1], ["body", "Explicabo tempore reprehenderit et alias sequi. Corporis ea quam fuga tempora quis commodi dolorem. Porro reiciendis maxime minus. Excepturi rerum est libero praesentium exercitationem sunt quis. Qui dolore perferendis sit. Eum amet et. Similique tempora sed doloremque explicabo dolor."], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["excerpt", "Et."], ["published", true], ["slug", "cupiditate-nisi-83"], ["title", "Est quo quod."], ["updated_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test83' OR lower(name) = 'rspec83' OR lower(name) = 'ruby83' OR lower(name) = '#rails83') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails83"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Et suscipit modi nihil quae cum ut.", "slug"=>"corporis-eum-84", "excerpt"=>"Facere rem in sed nisi possimus.", "body"=>"Provident quidem veniam autem veritatis. Aut voluptatem repellendus incidunt placeat sapiente sunt. Molestiae dolorem perspiciatis quaerat qui qui ad soluta. In consectetur ipsa dolorem illum. Aut suscipit ea nostrum dicta. Non sit in non sint repellendus praesentium. Similique et dolores repudiandae id quibusdam.", "published"=>true, "tag_list"=>"common,test84,rspec84,ruby84,#rails84", "author_id"=>"134", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'corporis-eum-84' AND "almanac_posts"."id" != 1) LIMIT 1  (0.1ms) UPDATE "almanac_posts" SET "title" = 'Et suscipit modi nihil quae cum ut.', "slug" = 'corporis-eum-84', "excerpt" = 'Facere rem in sed nisi possimus.', "body" = 'Provident quidem veniam autem veritatis. Aut voluptatem repellendus incidunt placeat sapiente sunt. Molestiae dolorem perspiciatis quaerat qui qui ad soluta. In consectetur ipsa dolorem illum. Aut suscipit ea nostrum dicta. Non sit in non sint repellendus praesentium. Similique et dolores repudiandae id quibusdam.', "author_id" = 134, "updated_at" = '2012-12-28 04:47:34.234544' WHERE "almanac_posts"."id" = 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test84' OR lower(name) = 'rspec84' OR lower(name) = 'ruby84' OR lower(name) = '#rails84') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test84' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails84"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."tagger_type" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."context" = 'tags' AND "taggings"."tag_id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 71ms (ActiveRecord: 2.6ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jany_boyle@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jany_boyle@example.com"], ["encrypted_password", "$2a$04$oSWzFz0Yj1BdhmQ/5DRITONkqmk8ZMlsPmT4tPi7MhiH0bVp/exH."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 135], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["description", "In mollitia natus dignissimos aut. Libero nulla ratione eum. Autem nemo et. Eveniet magnam voluptatem porro deleniti necessitatibus explicabo."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aliquam eum sed quaerat a aspernatur voluptatem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quaerat-occaecati-85' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 136], ["blog_id", 1], ["body", "Consectetur ut numquam sunt non est. Enim et sint quam pariatur vel. Ut error dolor laudantium dolorum corrupti voluptatem. Et qui mollitia fugiat modi ex iure pariatur. Consequuntur vel tempore sunt temporibus. Aspernatur fugit ut delectus sit qui. Maiores vel est repellendus."], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["excerpt", "Distinctio vel sit."], ["published", true], ["slug", "quaerat-occaecati-85"], ["title", "Error in iusto et sit."], ["updated_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test85' OR lower(name) = 'rspec85' OR lower(name) = 'ruby85' OR lower(name) = '#rails85') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test85"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails85"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"distinctio-aut-86", "excerpt"=>"Molestiae.", "body"=>"Quas similique ipsum rem sit dicta. Qui repudiandae enim ut aliquid doloremque magni. Sint quia sed quisquam tempore consectetur quia assumenda. Aliquam quidem incidunt qui reiciendis vel magnam officiis. Omnis et nulla voluptas atque. Aut labore magnam.", "published"=>true, "tag_list"=>"common,test86,rspec86,ruby86,#rails86", "author_id"=>"137", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'distinctio-aut-86' AND "almanac_posts"."id" != 1) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 14ms (Views: 2.3ms | ActiveRecord: 0.7ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'abdiel@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "abdiel@example.org"], ["encrypted_password", "$2a$04$yigu2ZTKAqPRmqtpjZl2Uubq5phvdmU/YmUmUm0Q0meCvnl9sJLV6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 138], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["description", "Corrupti neque ut qui eum enim repellendus. Dignissimos nostrum iste unde placeat ut voluptatem. Eum ad dolor sapiente at dicta est quidem. Alias non aliquid quia saepe praesentium veniam. Molestias asperiores quaerat quam sit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Repellendus vel amet pariatur et facilis nostrum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'cupiditate-nisi-87' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 139], ["blog_id", 1], ["body", "Explicabo tempore reprehenderit et alias sequi. Corporis ea quam fuga tempora quis commodi dolorem. Porro reiciendis maxime minus. Excepturi rerum est libero praesentium exercitationem sunt quis. Qui dolore perferendis sit. Eum amet et. Similique tempora sed doloremque explicabo dolor."], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["excerpt", "Et."], ["published", true], ["slug", "cupiditate-nisi-87"], ["title", "Est quo quod."], ["updated_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test87' OR lower(name) = 'rspec87' OR lower(name) = 'ruby87' OR lower(name) = '#rails87') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails87"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"quo-doloribus-88", "excerpt"=>"Est nisi.", "body"=>"Facere rem in sed nisi possimus culpa sit. Veritatis aut qui molestiae nesciunt. Temporibus ipsam dolorum. Aut doloribus aut. Sed qui voluptate. Consequatur nemo ipsam aspernatur sit nesciunt est ratione. Et aliquid numquam repellendus.", "published"=>true, "tag_list"=>"common,test88,rspec88,ruby88,#rails88", "author_id"=>"140", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'quo-doloribus-88' AND "almanac_posts"."id" != 1) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 12ms (Views: 1.4ms | ActiveRecord: 0.6ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 141], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["description", "Fugiat accusantium delectus neque est non rerum eligendi. Molestiae blanditiis quas molestiae harum. Esse animi et odio."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Tenetur corrupti sit quia facilis aut velit."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 143], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00], ["description", "Dolor aspernatur recusandae libero eos hic. Quibusdam quo molestiae est adipisci. Optio iste quis doloribus nobis dolorem."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Tenetur quaerat libero sed."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:47:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (0.5ms) rollback transaction Connecting to database specified by database.yml  (1.0ms) DELETE FROM "users";  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';  (0.9ms) DELETE FROM "almanac_posts";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_posts';  (1.0ms) DELETE FROM "almanac_images";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_images';  (0.7ms) DELETE FROM "tags";  (0.1ms) DELETE FROM sqlite_sequence where name = 'tags';  (0.7ms) DELETE FROM "taggings";  (0.1ms) DELETE FROM sqlite_sequence where name = 'taggings';  (0.8ms) DELETE FROM "almanac_comments";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_comments';  (0.8ms) DELETE FROM "almanac_blogs";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_blogs';  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (1.9ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (5.3ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["description", "Possimus architecto voluptate. Suscipit autem odit aspernatur sit. Sit et cum. Et est nisi sit. Tempora cupiditate quod officiis est."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et distinctio consequatur quia nam ipsam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 3], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["description", "Non alias sint. Et sunt voluptates qui. Qui non impedit repudiandae quo. Aut nobis iusto fugiat."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Omnis sed corporis sit."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mazie@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.9ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mazie@example.net"], ["encrypted_password", "$2a$04$5xJ9lJ7kysRWpkclYsoj9O1lR.AHVO4RozJPdnUkFT1Y55Eom2mkG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 5], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["description", "Libero nulla atque placeat quia debitis. Id ipsam earum praesentium rerum quas natus voluptatem. Molestiae ad doloremque ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Soluta ipsa et et modi explicabo."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"quas-maxime-1", "excerpt"=>"Ut ea ad sed.", "body"=>"Officiis accusantium deleniti. A voluptas deleniti est eum fuga. Et eum aliquam odit ratione eum fuga. Aut commodi voluptas sit nostrum. Et non non aspernatur dolor reiciendis.", "published"=>true, "tag_list"=>"common,test1,rspec1,ruby1,#rails1", "author_id"=>"6", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quas-maxime-1' LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Rendered /Users/vasinov/dev/almanac/app/views/almanac/posts/new.html.haml within layouts/almanac/application (0.6ms) Completed 200 OK in 97ms (Views: 13.6ms | ActiveRecord: 0.8ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jerrold@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jerrold@example.com"], ["encrypted_password", "$2a$04$HQu1rmeqjdqHH6j8gYUm/eAj9IoKNIdukWnHF9giaSE/4uTItfVqO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 7], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["description", "Corporis sapiente nulla hic esse harum. Magni ab est dolorem laudantium ea ad. Temporibus ut vitae et placeat adipisci laboriosam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quidem iusto qui."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"ad-suscipit-2", "excerpt"=>"Aut perferendis voluptatem animi.", "body"=>"Aut earum id eum. Nisi quis aperiam dicta harum deleniti placeat qui. Earum commodi ipsa sed recusandae sunt. Odit molestiae sequi omnis ut voluptate. Non placeat velit velit recusandae dolore.", "published"=>true, "tag_list"=>"common,test2,rspec2,ruby2,#rails2", "author_id"=>"8", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ad-suscipit-2' LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 1.5ms | ActiveRecord: 0.4ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"   (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mazie@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mazie@example.net"], ["encrypted_password", "$2a$04$l8d1hRSGrNBfXinMy5YhueRFnjs5LFfkGijqOppO2dVf7z/oRHBhq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 9], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["description", "Libero nulla atque placeat quia debitis. Id ipsam earum praesentium rerum quas natus voluptatem. Molestiae ad doloremque ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Soluta ipsa et et modi explicabo."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Autem animi quos.", "slug"=>"et-quae-3", "excerpt"=>"Autem accusantium iure voluptatum.", "body"=>"Porro praesentium repellat perspiciatis laborum omnis et. Et eum aliquam odit ratione eum fuga. Aut commodi voluptas sit nostrum. Et non non aspernatur dolor reiciendis. Voluptate hic et aliquid id omnis.", "published"=>true, "tag_list"=>"common,test3,rspec3,ruby3,#rails3", "author_id"=>"10", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-quae-3' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Porro praesentium repellat perspiciatis laborum omnis et. Et eum aliquam odit ratione eum fuga. Aut commodi voluptas sit nostrum. Et non non aspernatur dolor reiciendis. Voluptate hic et aliquid id omnis."], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["excerpt", "Autem accusantium iure voluptatum."], ["published", true], ["slug", "et-quae-3"], ["title", "Autem animi quos."], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test3' OR lower(name) = 'rspec3' OR lower(name) = 'ruby3' OR lower(name) = '#rails3') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails3"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 137ms (ActiveRecord: 2.7ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jailyn_mckenzie@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jailyn_mckenzie@example.org"], ["encrypted_password", "$2a$04$yFNgE7ywhat8oXzmUeQUgu10ko1imnTNJTWnFb4gVMBDFtcJbt.q."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 11], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["description", "Ut voluptatum exercitationem reprehenderit perferendis voluptatem. Modi magnam quisquam. Possimus eos cum ut atque enim rerum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Repellat quibusdam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_posts"  Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Occaecati molestias illum.", "slug"=>"ut-minus-4", "excerpt"=>"Laudantium voluptatibus.", "body"=>"Et enim ex officiis. Voluptas accusamus et quam autem tenetur ea aliquam. Ea corporis maxime autem non. Pariatur voluptatem deleniti dolor. Praesentium quod ducimus adipisci. Adipisci qui qui ipsam explicabo nostrum recusandae.", "published"=>true, "tag_list"=>"common,test4,rspec4,ruby4,#rails4", "author_id"=>"12", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ut-minus-4' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Et enim ex officiis. Voluptas accusamus et quam autem tenetur ea aliquam. Ea corporis maxime autem non. Pariatur voluptatem deleniti dolor. Praesentium quod ducimus adipisci. Adipisci qui qui ipsam explicabo nostrum recusandae."], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["excerpt", "Laudantium voluptatibus."], ["published", true], ["slug", "ut-minus-4"], ["title", "Occaecati molestias illum."], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test4' OR lower(name) = 'rspec4' OR lower(name) = 'ruby4' OR lower(name) = '#rails4') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test4"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec4"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby4"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails4"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 27ms (ActiveRecord: 2.3ms)  (0.0ms) SELECT COUNT(*) FROM "almanac_posts"   (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mazie@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mazie@example.net"], ["encrypted_password", "$2a$04$qRkVUAQ8i8E5IrCEO/t9E.W9ZK4tbzK06Awf6cBjcGAQcKV1puG5O"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 13], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["description", "Libero nulla atque placeat quia debitis. Id ipsam earum praesentium rerum quas natus voluptatem. Molestiae ad doloremque ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Soluta ipsa et et modi explicabo."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-quae-5' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 14], ["blog_id", 1], ["body", "Porro praesentium repellat perspiciatis laborum omnis et. Et eum aliquam odit ratione eum fuga. Aut commodi voluptas sit nostrum. Et non non aspernatur dolor reiciendis. Voluptate hic et aliquid id omnis."], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["excerpt", "Autem accusantium iure voluptatum."], ["published", true], ["slug", "et-quae-5"], ["title", "Autem animi quos."], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test5' OR lower(name) = 'rspec5' OR lower(name) = 'ruby5' OR lower(name) = '#rails5') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails5"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"dolor-praesentium-6", "excerpt"=>"Laboriosam.", "body"=>"Sint sit accusamus asperiores. Ut nemo modi aut. Occaecati eligendi necessitatibus architecto magni consequatur a. Quia aspernatur aperiam cum vel non consequatur magni. Aut qui accusamus et dignissimos quidem libero. Debitis aut ut tempora suscipit cupiditate est. Dolore ex neque occaecati et.", "published"=>true, "tag_list"=>"common,test6,rspec6,ruby6,#rails6", "author_id"=>"15", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'dolor-praesentium-6' AND "almanac_posts"."id" != 1) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 15ms (Views: 2.3ms | ActiveRecord: 0.7ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'melody@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "melody@example.net"], ["encrypted_password", "$2a$04$NCamNDN2hc4pd7ewgH8WF.GncG4rroVu6dJuTa2HsuEBwm.XL8xQK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 16], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["description", "Repudiandae quae architecto. Et dignissimos officia quidem et labore. Et voluptas facilis illo cupiditate ut dolorem. Non tempore et necessitatibus. Maiores voluptas sapiente ea."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Non placeat velit velit recusandae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sit-adipisci-7' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 17], ["blog_id", 1], ["body", "Sed eos voluptas sunt magni consequatur enim. Praesentium sint adipisci qui qui. Sit optio laudantium. Voluptatem aut laudantium eos qui delectus nihil provident. Similique modi aliquam laudantium beatae magni sapiente."], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["excerpt", "Deserunt assumenda in voluptate."], ["published", true], ["slug", "sit-adipisci-7"], ["title", "Repellat dolorem est ad voluptatum a autem ipsum."], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test7' OR lower(name) = 'rspec7' OR lower(name) = 'ruby7' OR lower(name) = '#rails7') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails7"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"dolorem-deleniti-8", "excerpt"=>"Nostrum aperiam dolorum vel.", "body"=>"Voluptas ad voluptate dolor aut. Nisi accusamus dolores omnis et sunt similique. Consectetur aliquid labore in. Nisi dolor omnis illum. Neque soluta dignissimos molestiae.", "published"=>true, "tag_list"=>"common,test8,rspec8,ruby8,#rails8", "author_id"=>"18", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'dolorem-deleniti-8' AND "almanac_posts"."id" != 1) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 12ms (Views: 1.5ms | ActiveRecord: 0.5ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mazie@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mazie@example.net"], ["encrypted_password", "$2a$04$s7AP0pq1dT7b5vSinNVszux2MoP8e9J9CCfFai6lB23uvHCOgnWRq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 19], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["description", "Libero nulla atque placeat quia debitis. Id ipsam earum praesentium rerum quas natus voluptatem. Molestiae ad doloremque ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Soluta ipsa et et modi explicabo."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-quae-9' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 20], ["blog_id", 1], ["body", "Porro praesentium repellat perspiciatis laborum omnis et. Et eum aliquam odit ratione eum fuga. Aut commodi voluptas sit nostrum. Et non non aspernatur dolor reiciendis. Voluptate hic et aliquid id omnis."], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["excerpt", "Autem accusantium iure voluptatum."], ["published", true], ["slug", "et-quae-9"], ["title", "Autem animi quos."], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test9' OR lower(name) = 'rspec9' OR lower(name) = 'ruby9' OR lower(name) = '#rails9') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test9"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec9"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby9"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails9"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Sit sed dolorem porro ut.", "slug"=>"qui-aut-10", "excerpt"=>"Sint sit.", "body"=>"Odio voluptatem enim eaque quia. Est vero quia autem. Inventore autem quis dolor non et omnis. Quo in ut repellat. Officia nostrum similique tenetur consequatur dolor dolores et. Dolore ex neque occaecati et.", "published"=>true, "tag_list"=>"common,test10,rspec10,ruby10,#rails10", "author_id"=>"21", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'qui-aut-10' AND "almanac_posts"."id" != 1) LIMIT 1  (0.1ms) UPDATE "almanac_posts" SET "title" = 'Sit sed dolorem porro ut.', "slug" = 'qui-aut-10', "excerpt" = 'Sint sit.', "body" = 'Odio voluptatem enim eaque quia. Est vero quia autem. Inventore autem quis dolor non et omnis. Quo in ut repellat. Officia nostrum similique tenetur consequatur dolor dolores et. Dolore ex neque occaecati et.', "author_id" = 21, "updated_at" = '2012-12-28 04:49:22.680138' WHERE "almanac_posts"."id" = 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test10' OR lower(name) = 'rspec10' OR lower(name) = 'ruby10' OR lower(name) = '#rails10') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test10' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test10"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec10"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby10"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails10"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."tagger_type" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."context" = 'tags' AND "taggings"."tag_id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5) SQL (0.2ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 85ms (ActiveRecord: 2.9ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'melody@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "melody@example.net"], ["encrypted_password", "$2a$04$.THtm2C7zH26QTBOBpDRa.ClMiLDDO8NIbcV5aDqaW16mGUkstgga"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 22], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["description", "Repudiandae quae architecto. Et dignissimos officia quidem et labore. Et voluptas facilis illo cupiditate ut dolorem. Non tempore et necessitatibus. Maiores voluptas sapiente ea."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Non placeat velit velit recusandae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sit-adipisci-11' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 23], ["blog_id", 1], ["body", "Sed eos voluptas sunt magni consequatur enim. Praesentium sint adipisci qui qui. Sit optio laudantium. Voluptatem aut laudantium eos qui delectus nihil provident. Similique modi aliquam laudantium beatae magni sapiente."], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["excerpt", "Deserunt assumenda in voluptate."], ["published", true], ["slug", "sit-adipisci-11"], ["title", "Repellat dolorem est ad voluptatum a autem ipsum."], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test11' OR lower(name) = 'rspec11' OR lower(name) = 'ruby11' OR lower(name) = '#rails11') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test11"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec11"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby11"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails11"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Testz", "slug"=>"dolorem-deleniti-12", "excerpt"=>"Nostrum aperiam dolorum vel.", "body"=>"Voluptas ad voluptate dolor aut. Nisi accusamus dolores omnis et sunt similique. Consectetur aliquid labore in. Nisi dolor omnis illum. Neque soluta dignissimos molestiae.", "published"=>true, "tag_list"=>"common,test12,rspec12,ruby12,#rails12", "author_id"=>"24", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'dolorem-deleniti-12' AND "almanac_posts"."id" != 1) LIMIT 1  (0.1ms) UPDATE "almanac_posts" SET "title" = 'Testz', "slug" = 'dolorem-deleniti-12', "excerpt" = 'Nostrum aperiam dolorum vel.', "body" = 'Voluptas ad voluptate dolor aut. Nisi accusamus dolores omnis et sunt similique. Consectetur aliquid labore in. Nisi dolor omnis illum. Neque soluta dignissimos molestiae.', "author_id" = 24, "updated_at" = '2012-12-28 04:49:22.800598' WHERE "almanac_posts"."id" = 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test12' OR lower(name) = 'rspec12' OR lower(name) = 'ruby12' OR lower(name) = '#rails12') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test12' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test12"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec12"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby12"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails12"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."tagger_type" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."context" = 'tags' AND "taggings"."tag_id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 30ms (ActiveRecord: 2.6ms) Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'kory.kunze@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "kory.kunze@example.com"], ["encrypted_password", "$2a$04$.kSGtRX8/FtXgyP9vY2RUOxL7EqIDfo0TmMeEJez2zEdgH1vj20t."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 25], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["description", "Quod non dicta quisquam nesciunt. Dolores eaque libero quia. Accusamus dolorem quaerat cupiditate. Aut ut fugiat deserunt aut expedita rerum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Tempora nihil."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'enim-perferendis-13' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 26], ["blog_id", 1], ["body", "Distinctio voluptatum quibusdam dignissimos provident. Tempora iure ut consectetur exercitationem quo. Et repudiandae totam id omnis et culpa voluptatem. Voluptate hic et aliquid id omnis. Sit sed dolorem porro ut."], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["excerpt", "Assumenda mollitia."], ["published", true], ["slug", "enim-perferendis-13"], ["title", "Autem accusantium iure voluptatum ut deleniti."], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test13' OR lower(name) = 'rspec13' OR lower(name) = 'ruby13' OR lower(name) = '#rails13') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails13"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-doloribus-14' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 27], ["blog_id", 1], ["body", "Occaecati eligendi necessitatibus architecto magni consequatur a. Quia aspernatur aperiam cum vel non consequatur magni. Aut qui accusamus et dignissimos quidem libero. Debitis aut ut tempora suscipit cupiditate est. Dolore ex neque occaecati et. Et molestiae doloribus officia nihil accusantium sit animi. Dolores voluptas ad quo nam laborum."], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["excerpt", "Culpa quam tempora."], ["published", true], ["slug", "aut-doloribus-14"], ["title", "Fuga quisquam placeat enim dicta quas temporibus ut."], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test14' OR lower(name) = 'rspec14' OR lower(name) = 'ruby14' OR lower(name) = '#rails14') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test14' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test14"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec14"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby14"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails14"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'numquam-quos-15' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 28], ["blog_id", 1], ["body", "Atque eveniet et. Eos est veritatis quibusdam est. Dolores omnis quidem. Dolor quia modi ipsum autem vel quasi. Velit et aperiam earum. Ea voluptatem iusto laudantium."], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["excerpt", "Molestias aut aliquid quam reprehenderit."], ["published", true], ["slug", "numquam-quos-15"], ["title", "Quos neque qui eos fuga facere non veritatis."], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test15' OR lower(name) = 'rspec15' OR lower(name) = 'ruby15' OR lower(name) = '#rails15') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test15"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec15"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby15"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails15"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'inventore-magni-16' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 29], ["blog_id", 1], ["body", "Blanditiis qui aut quia beatae sit qui quo. Odio veniam magni. Aut corrupti quia eveniet delectus. Officiis aut optio porro rerum. Praesentium laborum iste velit omnis nostrum non."], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["excerpt", "Perspiciatis quo."], ["published", true], ["slug", "inventore-magni-16"], ["title", "Mollitia doloremque in doloribus esse."], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test16' OR lower(name) = 'rspec16' OR lower(name) = 'ruby16' OR lower(name) = '#rails16') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test16"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec16"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby16"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails16"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.3ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'amet-est-17' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 30], ["blog_id", 1], ["body", "Et molestiae dolores sed itaque vel. Totam perferendis quaerat. Velit sit et tempora. Explicabo in placeat eveniet culpa. Aut fugit voluptatem consectetur perspiciatis dolorem corporis impedit. Est ut voluptas sit et nihil consequatur aut."], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["excerpt", "Consequatur temporibus dolor totam voluptas qui."], ["published", true], ["slug", "amet-est-17"], ["title", "Error modi aspernatur quaerat tenetur praesentium fuga quasi."], ["updated_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test17' OR lower(name) = 'rspec17' OR lower(name) = 'ruby17' OR lower(name) = '#rails17') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test17"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec17"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby17"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails17"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:22 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 8ms (Views: 2.3ms | ActiveRecord: 0.1ms) Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'zora@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "zora@example.org"], ["encrypted_password", "$2a$04$proLz5MnIn2.CqpXwM8qUu5pZCO3PulD.i2F8e9aKcb7DkfC5aMmK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 31], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["description", "Quam earum eligendi. Voluptas ut velit modi consequatur pariatur fugit qui. Molestiae quisquam ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Omnis repudiandae sit reprehenderit."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'cupiditate-quam-18' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 32], ["blog_id", 1], ["body", "Saepe quae harum rerum. Consequatur dignissimos at impedit quia deserunt. Cupiditate optio vel veniam et voluptatem et. Ipsum facilis ratione labore non repellendus alias. Beatae et quibusdam facere officiis."], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["excerpt", "Est dolorum omnis asperiores itaque deserunt."], ["published", false], ["slug", "cupiditate-quam-18"], ["title", "Sit quaerat ullam sequi necessitatibus saepe rerum."], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test18' OR lower(name) = 'rspec18' OR lower(name) = 'ruby18' OR lower(name) = '#rails18') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test18' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test18"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec18' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec18"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby18' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby18"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails18' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails18"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'totam-adipisci-19' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 33], ["blog_id", 1], ["body", "Id consectetur architecto. Doloremque rerum est dolor qui non. Rerum temporibus voluptatem. Cum ipsum sed. Non nobis libero dolorem iusto modi saepe sequi. Esse aut libero impedit iste rem voluptate."], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["excerpt", "Rerum pariatur."], ["published", false], ["slug", "totam-adipisci-19"], ["title", "Alias maiores voluptatem maxime est rerum veniam rerum."], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test19' OR lower(name) = 'rspec19' OR lower(name) = 'ruby19' OR lower(name) = '#rails19') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test19' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test19"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec19"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby19"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails19"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'in-aspernatur-20' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 34], ["blog_id", 1], ["body", "Fuga repellendus commodi. Tempore magnam nihil. Voluptate a labore quis at. Ut temporibus dolores explicabo voluptas vel aut qui. Sit deleniti molestias quod. Quas harum expedita quasi similique voluptatem quis consequuntur."], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["excerpt", "Veritatis nobis rerum corporis."], ["published", false], ["slug", "in-aspernatur-20"], ["title", "Corrupti a in enim distinctio beatae odio."], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test20' OR lower(name) = 'rspec20' OR lower(name) = 'ruby20' OR lower(name) = '#rails20') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test20' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test20"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec20' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec20"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby20' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby20"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails20' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails20"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 6ms (Views: 1.4ms | ActiveRecord: 0.1ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f' ORDER BY written_at DESC, id DESC  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'gerard@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "gerard@example.org"], ["encrypted_password", "$2a$04$I0Qi8hNwkr9SlZTh1xfUheCFcYtdWLwJpBAN2GfrKr2aa7pzTm..."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 35], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["description", "Nihil sequi sed in animi est eaque hic. Expedita error ut ea neque alias nostrum cupiditate. Molestias ratione aut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Animi voluptatem sed velit ipsam blanditiis hic."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 5ms (Views: 1.4ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mazie@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mazie@example.net"], ["encrypted_password", "$2a$04$3KI9rg5mxPpzqGGtcnkv2.JaybwEceMujxaBrw3ZIPeWsUlCh6vYG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 36], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["description", "Libero nulla atque placeat quia debitis. Id ipsam earum praesentium rerum quas natus voluptatem. Molestiae ad doloremque ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Soluta ipsa et et modi explicabo."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 7ms (Views: 2.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'nathen_jacobs@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "nathen_jacobs@example.org"], ["encrypted_password", "$2a$04$k.Ew0IPOjAZ1Dhs/7BXXZ.iHivmUfUwRyVYR5f5QMwVWCoQsWIUCa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 37], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["description", "Minus accusantium id et nihil voluptatem vitae. Error voluptatem magni numquam ab fugit qui. Aut qui iste numquam dolore fugit non. Quisquam repudiandae est pariatur et. Provident id totam ut repellat illo dolorem."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quae reiciendis ut enim incidunt."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sed-ullam-21' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 38], ["blog_id", 1], ["body", "Magni ab est dolorem laudantium ea ad. Temporibus ut vitae et placeat adipisci laboriosam. Porro voluptatem deserunt possimus voluptas odio consectetur. Totam iusto eum quisquam consequatur. Suscipit quae laudantium consequatur nemo itaque. Eos aut reprehenderit. Vel optio voluptatem maiores."], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["excerpt", "Corporis sapiente nulla hic."], ["published", true], ["slug", "sed-ullam-21"], ["title", "Modi est quidem reprehenderit alias rerum impedit."], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test21' OR lower(name) = 'rspec21' OR lower(name) = 'ruby21' OR lower(name) = '#rails21') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test21"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec21"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby21"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails21"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptas-eveniet-22' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 39], ["blog_id", 1], ["body", "Praesentium quod ducimus adipisci. Adipisci qui qui ipsam explicabo nostrum recusandae. Amet praesentium sint magnam veniam at. Commodi delectus iusto est repellat vel. Earum in sed reprehenderit deleniti vel saepe. Occaecati placeat odio asperiores voluptas. Nam cum tempora modi aut vitae."], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["excerpt", "Repudiandae."], ["published", true], ["slug", "voluptas-eveniet-22"], ["title", "Voluptatem et ipsum commodi dolore."], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test22' OR lower(name) = 'rspec22' OR lower(name) = 'ruby22' OR lower(name) = '#rails22') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test22' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test22"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec22"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby22"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails22"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'delectus-aut-23' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 40], ["blog_id", 1], ["body", "Et quia natus saepe. Accusantium recusandae et expedita eum. Nostrum aperiam dolorum vel deleniti mollitia. Laudantium aspernatur eos. Nesciunt et quis in. Rerum repellendus natus quis asperiores doloremque beatae. Nisi dolor omnis illum."], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["excerpt", "Dolorem odit quasi corrupti."], ["published", true], ["slug", "delectus-aut-23"], ["title", "Dolor consectetur perferendis veritatis fugiat tempora omnis at."], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test23' OR lower(name) = 'rspec23' OR lower(name) = 'ruby23' OR lower(name) = '#rails23') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test23"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec23"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby23"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails23"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'asperiores-qui-24' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 41], ["blog_id", 1], ["body", "Quam illo totam architecto eos debitis qui quibusdam. Doloremque eligendi est provident. Maxime ut ipsa ad cum aut et. Recusandae non harum optio ea temporibus. Earum aut adipisci laudantium."], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["excerpt", "Doloremque."], ["published", true], ["slug", "asperiores-qui-24"], ["title", "Neque soluta dignissimos molestiae."], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test24' OR lower(name) = 'rspec24' OR lower(name) = 'ruby24' OR lower(name) = '#rails24') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test24"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec24"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby24"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails24"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'pariatur-et-25' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 42], ["blog_id", 1], ["body", "Et cum esse sapiente. Maiores est voluptas reprehenderit quia ab dolore expedita. Magnam voluptas fugit. Ut voluptas eum. Vero dolorem est veritatis molestiae rerum nihil. Quasi nesciunt corrupti est eaque ut autem. Magnam quia eligendi suscipit vero quia est excepturi."], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["excerpt", "Expedita molestiae."], ["published", true], ["slug", "pariatur-et-25"], ["title", "Et sit excepturi voluptates ipsa ut nobis."], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test25' OR lower(name) = 'rspec25' OR lower(name) = 'ruby25' OR lower(name) = '#rails25') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test25"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec25"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby25"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails25"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Parameters: {"tag_name"=>"common"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common') Completed 200 OK in 7ms (Views: 1.5ms | ActiveRecord: 0.2ms) Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" JOIN taggings posts_taggings_667cf09 ON posts_taggings_667cf09.taggable_id = almanac_posts.id AND posts_taggings_667cf09.taggable_type = 'Almanac::Post' AND posts_taggings_667cf09.tag_id = 1 WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mazie@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mazie@example.net"], ["encrypted_password", "$2a$04$CyuqDbSExoWZDIKlDs3YPeQzT49K8BXPMpXsZqa8eE.gPTNx5qTOC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 43], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["description", "Libero nulla atque placeat quia debitis. Id ipsam earum praesentium rerum quas natus voluptatem. Molestiae ad doloremque ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Soluta ipsa et et modi explicabo."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-quae-26' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 44], ["blog_id", 1], ["body", "Porro praesentium repellat perspiciatis laborum omnis et. Et eum aliquam odit ratione eum fuga. Aut commodi voluptas sit nostrum. Et non non aspernatur dolor reiciendis. Voluptate hic et aliquid id omnis."], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["excerpt", "Autem accusantium iure voluptatum."], ["published", true], ["slug", "et-quae-26"], ["title", "Autem animi quos."], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test26' OR lower(name) = 'rspec26' OR lower(name) = 'ruby26' OR lower(name) = '#rails26') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails26"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."post_id" = 1 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 21ms (ActiveRecord: 1.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jailyn_mckenzie@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jailyn_mckenzie@example.org"], ["encrypted_password", "$2a$04$7jON/tEv46qJ4tdmgh9LNeL9KUJKp.QFApUvPNzq40RH09aA/uEzu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 45], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["description", "Ut voluptatum exercitationem reprehenderit perferendis voluptatem. Modi magnam quisquam. Possimus eos cum ut atque enim rerum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Repellat quibusdam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ut-minus-27' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 46], ["blog_id", 1], ["body", "Et enim ex officiis. Voluptas accusamus et quam autem tenetur ea aliquam. Ea corporis maxime autem non. Pariatur voluptatem deleniti dolor. Praesentium quod ducimus adipisci. Adipisci qui qui ipsam explicabo nostrum recusandae."], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["excerpt", "Laudantium voluptatibus."], ["published", true], ["slug", "ut-minus-27"], ["title", "Occaecati molestias illum."], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test27' OR lower(name) = 'rspec27' OR lower(name) = 'ruby27' OR lower(name) = '#rails27') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails27"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_posts"  Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."post_id" = 1 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 11ms (ActiveRecord: 0.9ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"   (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mazie@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mazie@example.net"], ["encrypted_password", "$2a$04$SmYWWsKHohFrvnuJWKeF3OxSYHtgktk9Fdz/JOQLCs7JDxR8WX.I."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 47], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["description", "Libero nulla atque placeat quia debitis. Id ipsam earum praesentium rerum quas natus voluptatem. Molestiae ad doloremque ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Soluta ipsa et et modi explicabo."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Et est distinctio ab minima natus. Voluptas corrupti accusantium omnis incidunt velit aut. Dolores velit incidunt sint rerum autem accusamus dolor.", "author_id"=>"48"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 8ms (Views: 3.0ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'kieran@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "kieran@example.com"], ["encrypted_password", "$2a$04$7GzyNI0oHj5KJh9Z7PkizetwEvFE11Y4KuDHhAC5bRQi1nF4cCfj2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 49], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["description", "Sed ut est beatae. Et eum odio vitae possimus. Molestiae sint nulla. Accusamus quae deserunt numquam architecto in. Maiores ab quia repellat ut molestiae voluptates libero."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Unde porro."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Quasi molestiae minima vel aut cum. Quaerat esse distinctio. Nulla aut quaerat.", "author_id"=>"50"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mazie@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mazie@example.net"], ["encrypted_password", "$2a$04$Yhe9YP9eIC7wuK1Q9sU/9OnT0whnM2ZFgKEWgOgKM.4Gkc2pQE8V2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 51], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["description", "Libero nulla atque placeat quia debitis. Id ipsam earum praesentium rerum quas natus voluptatem. Molestiae ad doloremque ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Soluta ipsa et et modi explicabo."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Autem animi.", "description"=>"Voluptas corrupti accusantium omnis incidunt velit aut. Dolores velit incidunt sint rerum autem accusamus dolor. Eum dolorem soluta. Eos magnam amet est velit.", "author_id"=>"52"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Autem animi.', "description" = 'Voluptas corrupti accusantium omnis incidunt velit aut. Dolores velit incidunt sint rerum autem accusamus dolor. Eum dolorem soluta. Eos magnam amet est velit.', "author_id" = 52, "updated_at" = '2012-12-28 04:49:23.487554' WHERE "almanac_blogs"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 6ms (ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'idell_kling@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "idell_kling@example.com"], ["encrypted_password", "$2a$04$eD7JVsZIrASeFRy5EaSodOGiVHTPB4TAdnqhng2eJxVaHD70qia9O"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 53], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["description", "Et cupiditate ut iure ea ab deserunt. Ducimus consequatur quae porro sit velit aliquid. Harum tempora quibusdam quo quia eum quasi quas."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Provident id totam ut repellat illo."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Testz", "description"=>"Quasi veniam dolorum. Eligendi totam exercitationem neque. Quasi soluta ullam qui animi. Est nemo dolor voluptas illum animi facere omnis.", "author_id"=>"54"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Testz', "description" = 'Quasi veniam dolorum. Eligendi totam exercitationem neque. Quasi soluta ullam qui animi. Est nemo dolor voluptas illum animi facere omnis.', "author_id" = 54, "updated_at" = '2012-12-28 04:49:23.504819' WHERE "almanac_blogs"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 6ms (ActiveRecord: 0.4ms) Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mazie@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mazie@example.net"], ["encrypted_password", "$2a$04$b80SZtZGNJeAAhPgLrKGher5x8CiCFLeezan/lyUFoEtYnwc/CVoW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Et qui pariatur voluptas nihil ut qui ullam. Libero nulla atque placeat quia debitis. Id ipsam earum praesentium rerum quas natus voluptatem.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 8ms (Views: 2.1ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'carson_hoeger@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "carson_hoeger@example.net"], ["encrypted_password", "$2a$04$zBUup2QZSZlznRn842p.beS.NeTk5GbycTOFXpVKWBHmPmZMR41my"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"  Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Autem qui facere aperiam quos. Quae reiciendis ut enim incidunt ut. Iste et est laborum in.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 1.5ms | ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"   (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mazie@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mazie@example.net"], ["encrypted_password", "$2a$04$JOxGsifU9cwWWoiMZci1GeUUg7nX1rc6SMSB5oMmr2zJOd1XnOIZK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Soluta ipsa et et modi explicabo.", "description"=>"Libero nulla atque placeat quia debitis. Id ipsam earum praesentium rerum quas natus voluptatem. Molestiae ad doloremque ut.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["description", "Libero nulla atque placeat quia debitis. Id ipsam earum praesentium rerum quas natus voluptatem. Molestiae ad doloremque ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Soluta ipsa et et modi explicabo."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 7ms (ActiveRecord: 0.8ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'nathen_jacobs@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "nathen_jacobs@example.org"], ["encrypted_password", "$2a$04$d96S7xTDM5AQMsqEUO1ku..slGA6R56AhUlS4wOK9uOYm9fzUfHv."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"  Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Quae reiciendis ut enim incidunt.", "description"=>"Minus accusantium id et nihil voluptatem vitae. Error voluptatem magni numquam ab fugit qui. Aut qui iste numquam dolore fugit non. Quisquam repudiandae est pariatur et. Provident id totam ut repellat illo dolorem.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["description", "Minus accusantium id et nihil voluptatem vitae. Error voluptatem magni numquam ab fugit qui. Aut qui iste numquam dolore fugit non. Quisquam repudiandae est pariatur et. Provident id totam ut repellat illo dolorem."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quae reiciendis ut enim incidunt."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 6ms (ActiveRecord: 0.8ms)  (0.0ms) SELECT COUNT(*) FROM "almanac_blogs"   (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 56], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["description", "Aliquid voluptate inventore occaecati. Dolorem ipsum eos repellat esse aperiam ad. Fugit maxime omnis aperiam ipsa impedit. Sapiente consequatur totam recusandae alias quo. Autem expedita a eligendi ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Consequuntur aliquam facere."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eos-perferendis-28' LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 58], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["description", "Molestiae et quam est. Dolores tempora aspernatur fugit autem. Aut error tenetur enim quis est omnis voluptatem. Debitis est dolores maxime voluptates aut est quaerat."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Repudiandae officia distinctio veniam eum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'tempora-maiores-29' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 57], ["blog_id", 1], ["body", "Quisquam ducimus commodi adipisci mollitia sunt rerum numquam. Et nostrum placeat rem asperiores. Excepturi architecto doloribus qui voluptatem nam. Debitis expedita exercitationem ad. Voluptatum excepturi rerum accusamus minus voluptatem voluptate corrupti."], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["excerpt", "Ipsam id dolores."], ["published", true], ["slug", "tempora-maiores-29"], ["title", "Amet et quos quas quasi at voluptatum."], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test29' OR lower(name) = 'rspec29' OR lower(name) = 'ruby29' OR lower(name) = '#rails29') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails29"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 60], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["description", "Omnis quod exercitationem. Optio neque dignissimos labore harum amet. Aut debitis ut. Consequatur omnis rerum aut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et ad occaecati officiis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'laudantium-illum-30' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 62], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["description", "Aliquam ea sapiente illum. Qui repellendus magnam. Molestias qui voluptates excepturi. Quo sapiente autem voluptatum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Veritatis distinctio sit id."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'praesentium-quisquam-31' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 64], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["description", "Quasi numquam eaque est laudantium autem totam. Quis blanditiis et alias eum ipsa neque quas. Velit ab praesentium aut et autem autem."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sit tempore voluptas assumenda et fuga."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ea-harum-32' LIMIT 1  (0.3ms) rollback transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 66], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["description", "Et ea voluptas rerum voluptas quo nesciunt. Quod id neque. Culpa modi recusandae aut omnis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Iure placeat."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-sit-33' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eaque-sit-34' LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'saepe-earum-35' LIMIT 1  (0.0ms) rollback transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 70], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["description", "Voluptas ea totam sapiente velit quas praesentium. Maiores quasi voluptatem ea fuga rerum. Modi eos qui nobis aspernatur doloribus. Porro quo a dignissimos et ipsam quos unde."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et aut iste quisquam dolores reprehenderit."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consequatur-voluptas-36' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 72], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["description", "Et animi quia impedit ea praesentium labore sint. Commodi debitis quidem excepturi eaque et cum. Eos consequatur sit cupiditate officia maxime quod quia. Libero rerum harum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Vel consequuntur numquam vel qui corporis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 73], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["description", "Ipsa illo fugit dignissimos animi. Deleniti magnam ut voluptates ut. Qui optio rem architecto. Alias laborum qui."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ea libero sequi et blanditiis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consequatur-provident-37' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 74], ["blog_id", 1], ["body", "Molestiae sapiente quidem. Et libero sapiente animi vel vitae incidunt atque. Blanditiis facere qui delectus. Itaque in vel rerum sunt consequatur quia. Delectus asperiores cum consequatur. Autem veritatis sunt cupiditate voluptatem aperiam et dolores."], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["excerpt", "Perferendis quasi corporis voluptate repellat dolores."], ["published", true], ["slug", "consequatur-provident-37"], ["title", "Labore adipisci inventore."], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test38' OR lower(name) = 'rspec38' OR lower(name) = 'ruby38' OR lower(name) = '#rails38') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test38"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec38"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails38"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quo-accusamus-38' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 75], ["blog_id", 1], ["body", "Asperiores dolores explicabo odit itaque quibusdam non. Soluta nobis sunt ut qui. Quia officiis sit sed similique et rerum. Ullam quos quod beatae qui a dolorem. Quia quaerat ut velit temporibus et repellendus dolores. Necessitatibus et saepe minus quis nostrum."], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["excerpt", "Impedit quis quidem."], ["published", true], ["slug", "quo-accusamus-38"], ["title", "Nihil sed ipsam id ad culpa."], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test39' OR lower(name) = 'rspec39' OR lower(name) = 'ruby39' OR lower(name) = '#rails39') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test39' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test39"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec39"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby39"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails39"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 77], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["description", "Possimus magnam ipsum et omnis perspiciatis sunt. Nulla ipsa doloremque consequatur aut quo nam deleniti. Ullam at rem et suscipit aut aut. Exercitationem ab enim molestiae voluptas saepe maxime minus. Vero aperiam consectetur qui aliquid qui voluptatem."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ipsum ad aut repellat assumenda."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 78], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["description", "Necessitatibus rem vel ab. Necessitatibus dignissimos nam et et. Quis facilis dolor. Ut sint deserunt similique consequatur."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sunt modi exercitationem dolor."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'temporibus-doloremque-39' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 79], ["blog_id", 1], ["body", "Molestias veritatis iure id. Eligendi et saepe autem quas impedit architecto. Omnis sed corporis sit libero. Nobis alias sapiente sunt fugiat porro. Ratione dolor et omnis consequatur sit sint."], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["excerpt", "Consequatur."], ["published", true], ["slug", "temporibus-doloremque-39"], ["title", "Sed modi consequuntur."], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test41' OR lower(name) = 'rspec41' OR lower(name) = 'ruby41' OR lower(name) = '#rails41') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test41"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec41"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby41"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails41"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'vel-libero-40' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 80], ["blog_id", 1], ["body", "Qui magnam hic. Quidem ut cum. Sed exercitationem voluptatem unde. Architecto quo voluptatem facilis eos. Reiciendis ex alias dolorem deleniti. Et et repellendus sint amet. Placeat repellendus non deleniti velit."], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["excerpt", "Aut nobis."], ["published", true], ["slug", "vel-libero-40"], ["title", "Maxime est in ad assumenda et."], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test42' OR lower(name) = 'rspec42' OR lower(name) = 'ruby42' OR lower(name) = '#rails42') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test42' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test42"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec42"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby42"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails42"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ab-vero-41' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 81], ["blog_id", 1], ["body", "Non veritatis omnis aperiam fugit quisquam a reprehenderit. Consequuntur quidem est deserunt. Enim qui natus rerum pariatur eos rerum. Consectetur est alias. Voluptas dolorem repudiandae ut error. Impedit est voluptatibus facilis distinctio soluta iure."], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["excerpt", "Nihil ut amet."], ["published", true], ["slug", "ab-vero-41"], ["title", "Nam fuga et quia totam architecto ut."], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test43' OR lower(name) = 'rspec43' OR lower(name) = 'ruby43' OR lower(name) = '#rails43') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test43"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec43"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby43"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails43"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'molestias-nisi-42' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 82], ["blog_id", 1], ["body", "Nostrum reiciendis earum eius eum sit. Enim reiciendis eius exercitationem doloribus. Excepturi non qui dolorum sit atque omnis. Ut accusamus harum nesciunt culpa minima assumenda. In delectus voluptate ut."], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["excerpt", "Qui excepturi enim iste."], ["published", true], ["slug", "molestias-nisi-42"], ["title", "Et dolor voluptatem in commodi et."], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test44' OR lower(name) = 'rspec44' OR lower(name) = 'ruby44' OR lower(name) = '#rails44') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test44"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec44"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby44"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails44"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ut-recusandae-43' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 83], ["blog_id", 1], ["body", "Atque quis tempore. Commodi sint numquam provident quod beatae ea. Voluptas quas at delectus. Vel alias delectus omnis aut ut ab odio. Maxime quia aut quod aliquam porro. Quos error rerum voluptas soluta a rem et."], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["excerpt", "Sunt cum."], ["published", false], ["slug", "ut-recusandae-43"], ["title", "Ab harum sint."], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test45' OR lower(name) = 'rspec45' OR lower(name) = 'ruby45' OR lower(name) = '#rails45') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test45"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec45"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby45"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails45"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'expedita-suscipit-44' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 84], ["blog_id", 1], ["body", "Perferendis autem dolor id voluptas omnis et. Quas quia asperiores quod sit. Eos natus ea harum fuga non. Libero consequatur aperiam iusto autem. Est aut nobis voluptatum quis rerum doloribus ipsum. Saepe voluptatem quis sed sequi voluptatem. Asperiores explicabo numquam eum sequi ut velit."], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["excerpt", "Est quam ut iste eum quisquam."], ["published", false], ["slug", "expedita-suscipit-44"], ["title", "Perspiciatis sed quaerat unde quos adipisci."], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test46' OR lower(name) = 'rspec46' OR lower(name) = 'ruby46' OR lower(name) = '#rails46') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test46' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails46"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'incidunt-nemo-45' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 85], ["blog_id", 1], ["body", "Deleniti pariatur alias molestiae voluptas mollitia laudantium quis. Et provident molestiae earum pariatur odit illum. Voluptatem ratione dolor. Excepturi et qui repellat doloremque minima qui tempore. Est ut alias rerum reprehenderit laudantium. Vero temporibus perferendis iste quia ducimus aliquam assumenda."], ["created_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["excerpt", "Impedit esse est dignissimos alias."], ["published", false], ["slug", "incidunt-nemo-45"], ["title", "Sapiente quidem ut cupiditate incidunt ea assumenda animi."], ["updated_at", Fri, 28 Dec 2012 04:49:23 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test47' OR lower(name) = 'rspec47' OR lower(name) = 'ruby47' OR lower(name) = '#rails47') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails47' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails47"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 't'  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 86], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["description", "Recusandae et occaecati magnam. Nihil enim dolorum consectetur fuga alias tenetur. Est quibusdam rerum aut ut nihil quod dolores. Rerum impedit magnam. Consequuntur quos aut labore."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Provident voluptatibus nobis eius quisquam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ab-et-46' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 87], ["blog_id", 1], ["body", "Ut sed sed velit et dolores natus. Veritatis totam est a natus. Alias ex blanditiis assumenda sapiente quo a et. Itaque et qui beatae nobis aliquid. Impedit rem ea omnis aut dolores voluptatem consequatur. Ipsa molestiae officiis quae maxime non omnis eveniet."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Dolor cum officia harum nihil accusamus."], ["published", true], ["slug", "ab-et-46"], ["title", "Placeat repudiandae maiores inventore."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test48' OR lower(name) = 'rspec48' OR lower(name) = 'ruby48' OR lower(name) = '#rails48') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails48"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'itaque-accusantium-47' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 88], ["blog_id", 1], ["body", "Quos asperiores reprehenderit eos et animi voluptatem porro. Dolor omnis mollitia odio nihil sit. Qui quae doloribus delectus dolor quia eius. Aut eaque velit sint eos. Tempore quis atque reprehenderit optio autem nihil."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Qui et aspernatur iste et."], ["published", true], ["slug", "itaque-accusantium-47"], ["title", "Earum neque quod et."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test49' OR lower(name) = 'rspec49' OR lower(name) = 'ruby49' OR lower(name) = '#rails49') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test49' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails49"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'doloribus-quis-48' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 89], ["blog_id", 1], ["body", "Autem tenetur ea aut minima tempora et dolor. Consequuntur quidem est deserunt. Enim qui natus rerum pariatur eos rerum. Consectetur est alias. Voluptas dolorem repudiandae ut error. Impedit est voluptatibus facilis distinctio soluta iure. Et dolor voluptatem in commodi et."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Atque voluptas deserunt."], ["published", true], ["slug", "doloribus-quis-48"], ["title", "Culpa repellendus quia aperiam."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test50' OR lower(name) = 'rspec50' OR lower(name) = 'ruby50' OR lower(name) = '#rails50') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails50"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-soluta-49' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 90], ["blog_id", 1], ["body", "Explicabo mollitia quis ipsam accusantium dignissimos sint. Aperiam totam amet sit hic beatae impedit. Ut accusamus harum nesciunt culpa minima assumenda. In delectus voluptate ut. Ab harum sint."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Voluptas delectus qui quis voluptas."], ["published", false], ["slug", "et-soluta-49"], ["title", "Ad est est laboriosam itaque repellat."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test51' OR lower(name) = 'rspec51' OR lower(name) = 'ruby51' OR lower(name) = '#rails51') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails51"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.3ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sunt-maxime-50' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 91], ["blog_id", 1], ["body", "Commodi sint numquam provident quod beatae ea. Voluptas quas at delectus. Vel alias delectus omnis aut ut ab odio. Maxime quia aut quod aliquam porro. Quos error rerum voluptas soluta a rem et. Perspiciatis sed quaerat unde quos adipisci."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Assumenda occaecati rerum consequatur odio et."], ["published", false], ["slug", "sunt-maxime-50"], ["title", "Iste dolore dicta atque qui."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test52' OR lower(name) = 'rspec52' OR lower(name) = 'ruby52' OR lower(name) = '#rails52') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails52"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptatem-odit-51' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 92], ["blog_id", 1], ["body", "Quod deleniti aperiam qui voluptas nam unde earum. Itaque veniam facere eaque blanditiis numquam. Libero consequatur aperiam iusto autem. Est aut nobis voluptatum quis rerum doloribus ipsum. Saepe voluptatem quis sed sequi voluptatem. Asperiores explicabo numquam eum sequi ut velit. Sapiente quidem ut cupiditate incidunt ea assumenda animi."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Perferendis autem dolor id voluptas."], ["published", false], ["slug", "voluptatem-odit-51"], ["title", "Provident sapiente eum accusantium aut et fuga."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test53' OR lower(name) = 'rspec53' OR lower(name) = 'ruby53' OR lower(name) = '#rails53') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails53"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f'  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 93], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["description", "Necessitatibus rem vel ab. Necessitatibus dignissimos nam et et. Quis facilis dolor. Ut sint deserunt similique consequatur."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sunt modi exercitationem dolor."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'temporibus-doloremque-52' LIMIT 1 SQL (0.6ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 94], ["blog_id", 1], ["body", "Molestias veritatis iure id. Eligendi et saepe autem quas impedit architecto. Omnis sed corporis sit libero. Nobis alias sapiente sunt fugiat porro. Ratione dolor et omnis consequatur sit sint."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Consequatur."], ["published", true], ["slug", "temporibus-doloremque-52"], ["title", "Sed modi consequuntur."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test54' OR lower(name) = 'rspec54' OR lower(name) = 'ruby54' OR lower(name) = '#rails54') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails54"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'vel-libero-53' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 95], ["blog_id", 1], ["body", "Qui magnam hic. Quidem ut cum. Sed exercitationem voluptatem unde. Architecto quo voluptatem facilis eos. Reiciendis ex alias dolorem deleniti. Et et repellendus sint amet. Placeat repellendus non deleniti velit."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Aut nobis."], ["published", true], ["slug", "vel-libero-53"], ["title", "Maxime est in ad assumenda et."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test55' OR lower(name) = 'rspec55' OR lower(name) = 'ruby55' OR lower(name) = '#rails55') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test55' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby55"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails55"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ab-vero-54' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 96], ["blog_id", 1], ["body", "Non veritatis omnis aperiam fugit quisquam a reprehenderit. Consequuntur quidem est deserunt. Enim qui natus rerum pariatur eos rerum. Consectetur est alias. Voluptas dolorem repudiandae ut error. Impedit est voluptatibus facilis distinctio soluta iure."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Nihil ut amet."], ["published", true], ["slug", "ab-vero-54"], ["title", "Nam fuga et quia totam architecto ut."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test56' OR lower(name) = 'rspec56' OR lower(name) = 'ruby56' OR lower(name) = '#rails56') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec56' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails56"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'molestias-nisi-55' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 97], ["blog_id", 1], ["body", "Nostrum reiciendis earum eius eum sit. Enim reiciendis eius exercitationem doloribus. Excepturi non qui dolorum sit atque omnis. Ut accusamus harum nesciunt culpa minima assumenda. In delectus voluptate ut."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Qui excepturi enim iste."], ["published", true], ["slug", "molestias-nisi-55"], ["title", "Et dolor voluptatem in commodi et."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test57' OR lower(name) = 'rspec57' OR lower(name) = 'ruby57' OR lower(name) = '#rails57') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails57"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ut-recusandae-56' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 98], ["blog_id", 1], ["body", "Atque quis tempore. Commodi sint numquam provident quod beatae ea. Voluptas quas at delectus. Vel alias delectus omnis aut ut ab odio. Maxime quia aut quod aliquam porro. Quos error rerum voluptas soluta a rem et."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Sunt cum."], ["published", true], ["slug", "ut-recusandae-56"], ["title", "Ab harum sint."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test58' OR lower(name) = 'rspec58' OR lower(name) = 'ruby58' OR lower(name) = '#rails58') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails58' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails58"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'expedita-suscipit-57' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 99], ["blog_id", 1], ["body", "Perferendis autem dolor id voluptas omnis et. Quas quia asperiores quod sit. Eos natus ea harum fuga non. Libero consequatur aperiam iusto autem. Est aut nobis voluptatum quis rerum doloribus ipsum. Saepe voluptatem quis sed sequi voluptatem. Asperiores explicabo numquam eum sequi ut velit."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Est quam ut iste eum quisquam."], ["published", true], ["slug", "expedita-suscipit-57"], ["title", "Perspiciatis sed quaerat unde quos adipisci."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test59' OR lower(name) = 'rspec59' OR lower(name) = 'ruby59' OR lower(name) = '#rails59') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails59"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'incidunt-nemo-58' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 100], ["blog_id", 1], ["body", "Deleniti pariatur alias molestiae voluptas mollitia laudantium quis. Et provident molestiae earum pariatur odit illum. Voluptatem ratione dolor. Excepturi et qui repellat doloremque minima qui tempore. Est ut alias rerum reprehenderit laudantium. Vero temporibus perferendis iste quia ducimus aliquam assumenda."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Impedit esse est dignissimos alias."], ["published", true], ["slug", "incidunt-nemo-58"], ["title", "Sapiente quidem ut cupiditate incidunt ea assumenda animi."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test60' OR lower(name) = 'rspec60' OR lower(name) = 'ruby60' OR lower(name) = '#rails60') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails60"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'amet-quo-59' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 101], ["blog_id", 1], ["body", "Error eaque est veritatis magni voluptates. Et quaerat suscipit eum dignissimos non iusto quae. Sint et praesentium. Enim qui quas laudantium ratione nemo. Provident pariatur dolor ea. Aut soluta ea."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Eveniet omnis."], ["published", true], ["slug", "amet-quo-59"], ["title", "Soluta pariatur assumenda culpa blanditiis."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test61' OR lower(name) = 'rspec61' OR lower(name) = 'ruby61' OR lower(name) = '#rails61') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails61"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'minima-soluta-60' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 102], ["blog_id", 1], ["body", "Quam et dolorem necessitatibus. Sit eum in rem quae veniam praesentium. Et non rerum. Minima maiores perspiciatis. Dolor voluptatem autem. Sint ipsam tempore possimus tenetur rerum placeat est."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Quidem."], ["published", true], ["slug", "minima-soluta-60"], ["title", "Quidem rerum delectus voluptatem optio laudantium totam."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test62' OR lower(name) = 'rspec62' OR lower(name) = 'ruby62' OR lower(name) = '#rails62') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails62"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptatem-debitis-61' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 103], ["blog_id", 1], ["body", "Eos natus ea ratione aspernatur. Quidem nam in assumenda ipsum fugiat vero dolores. Minima quisquam error ut harum qui voluptatem laudantium. Eum molestiae commodi minus. Odit error corporis occaecati. Sunt quas voluptatem. Illo enim eum qui reprehenderit voluptatem pariatur qui."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Quae temporibus neque et atque dolores."], ["published", true], ["slug", "voluptatem-debitis-61"], ["title", "Quaerat tenetur maxime mollitia id."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test63' OR lower(name) = 'rspec63' OR lower(name) = 'ruby63' OR lower(name) = '#rails63') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails63"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptatum-voluptatem-62' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 104], ["blog_id", 1], ["body", "Soluta voluptatem enim est non minima. Reiciendis consequatur at. Quia doloribus ut dolores. Enim quae doloremque nesciunt. Nesciunt dolore magnam consequuntur cumque molestiae. Non blanditiis quas debitis."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Omnis blanditiis vitae."], ["published", false], ["slug", "voluptatum-voluptatem-62"], ["title", "Sit minima porro quia nostrum."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test64' OR lower(name) = 'rspec64' OR lower(name) = 'ruby64' OR lower(name) = '#rails64') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails64"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 42 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 42], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 43 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 43], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 44 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 44], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 45 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 45], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ratione-cum-63' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 105], ["blog_id", 1], ["body", "Sapiente quisquam architecto fugit doloremque dolore ratione. Itaque assumenda ut ea ducimus qui illum voluptatibus. Perferendis consectetur officiis. Modi dolorum repellat sed occaecati sed qui. At aut qui in. Excepturi aut et aperiam est culpa qui."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Ea expedita voluptates."], ["published", false], ["slug", "ratione-cum-63"], ["title", "Dicta aperiam vel veritatis illum saepe."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test65' OR lower(name) = 'rspec65' OR lower(name) = 'ruby65' OR lower(name) = '#rails65') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails65"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 46 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 46], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 47 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 47], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 48 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 48], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 49 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 49], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_59effbf ON posts_taggings_59effbf.taggable_id = almanac_posts.id AND posts_taggings_59effbf.taggable_type = 'Almanac::Post' AND posts_taggings_59effbf.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 106], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["description", "Eius id dolor cumque. Accusantium enim reprehenderit nulla deleniti. Facere debitis repellendus et repellat quam odio magni. Quia modi eos in repellendus. Eum illum quasi."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et dolores."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'fuga-est-64' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 107], ["blog_id", 1], ["body", "Ut maiores et at voluptatem. Molestiae quas asperiores harum quae facilis beatae. Dolorem temporibus sunt cum sequi. Ut rerum aperiam dolorem repellendus optio repudiandae. Sint consequatur praesentium explicabo eligendi."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Unde reprehenderit commodi sit aut."], ["published", true], ["slug", "fuga-est-64"], ["title", "Unde qui ea facere."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test66' OR lower(name) = 'rspec66' OR lower(name) = 'ruby66' OR lower(name) = '#rails66') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec66' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails66"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptatem-in-65' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 108], ["blog_id", 1], ["body", "Molestias eos ut aut. Harum eveniet aut aut. Laboriosam quibusdam voluptate qui. Laborum quae placeat similique est nemo. Rem hic et porro et."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Iusto."], ["published", true], ["slug", "voluptatem-in-65"], ["title", "Nihil aperiam eum."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test67' OR lower(name) = 'rspec67' OR lower(name) = 'ruby67' OR lower(name) = '#rails67') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test67' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails67"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'tempore-fugit-66' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 109], ["blog_id", 1], ["body", "Dolores sed animi rerum. Voluptate at recusandae ipsam dolores omnis et. Velit et et magni dolores voluptatibus necessitatibus. Nostrum officiis impedit. Fugit eos non."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Omnis aut tempore consequatur hic."], ["published", true], ["slug", "tempore-fugit-66"], ["title", "Mollitia laborum eum et omnis quia sed adipisci."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test68' OR lower(name) = 'rspec68' OR lower(name) = 'ruby68' OR lower(name) = '#rails68') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails68' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails68"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'velit-eos-67' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 110], ["blog_id", 1], ["body", "Dolor ipsum autem nisi iure harum dolore. Placeat et commodi voluptatem est. Animi commodi doloremque. Voluptas laboriosam voluptatibus placeat sit odit. Est autem dolor sit eveniet rem eius."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Rerum expedita."], ["published", true], ["slug", "velit-eos-67"], ["title", "Autem aut est quibusdam et rerum similique saepe."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test69' OR lower(name) = 'rspec69' OR lower(name) = 'ruby69' OR lower(name) = '#rails69') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails69"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'adipisci-autem-68' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 111], ["blog_id", 1], ["body", "Accusamus enim est quam ut ut sit. Corporis voluptates voluptas illum iusto. Quo corporis non omnis aperiam. Aut facilis iusto ea. Est fuga libero temporibus."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Nihil cum."], ["published", true], ["slug", "adipisci-autem-68"], ["title", "Harum ut soluta numquam praesentium consequatur voluptatem."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test70' OR lower(name) = 'rspec70' OR lower(name) = 'ruby70' OR lower(name) = '#rails70') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec70' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails70"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'expedita-provident-69' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 112], ["blog_id", 1], ["body", "Sint omnis sequi culpa. Officiis dicta sunt. Molestiae doloremque fuga vero eum est. Aspernatur quia dolores consequatur qui esse. Repellat voluptas qui ut nemo."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Molestiae nostrum."], ["published", true], ["slug", "expedita-provident-69"], ["title", "Quo enim eveniet et."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test71' OR lower(name) = 'rspec71' OR lower(name) = 'ruby71' OR lower(name) = '#rails71') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails71"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptas-at-70' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 113], ["blog_id", 1], ["body", "Temporibus dicta similique officia quis soluta rerum ex. Et dolor placeat dolorem laboriosam. Magni sit fugit et quia distinctio. Quis est sunt praesentium et qui accusantium. Excepturi ut et officiis."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Quae."], ["published", true], ["slug", "voluptas-at-70"], ["title", "Dolorum ipsa dolor voluptas perspiciatis iusto quo sequi."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test72' OR lower(name) = 'rspec72' OR lower(name) = 'ruby72' OR lower(name) = '#rails72') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails72"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'officia-id-71' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 114], ["blog_id", 1], ["body", "Inventore perferendis itaque et minima qui mollitia. Iste modi ut eum aut et voluptas. Laudantium pariatur non rerum rem iusto maiores quam. Alias iste dolorum laboriosam a est et sunt. Earum veniam incidunt. Non provident iure ullam."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Deleniti alias eaque tempore velit corporis."], ["published", true], ["slug", "officia-id-71"], ["title", "Quaerat commodi dolores mollitia aspernatur adipisci non impedit."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test73' OR lower(name) = 'rspec73' OR lower(name) = 'ruby73' OR lower(name) = '#rails73') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test73' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails73"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nihil-qui-72' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 115], ["blog_id", 1], ["body", "Totam delectus architecto. Similique et nesciunt dolore non blanditiis quia. Aut error ex ut et ipsa ullam. Perspiciatis soluta voluptatibus. Iusto ipsam qui sint inventore voluptate. Alias ut sunt accusantium non dolorem velit sapiente. Et illo ipsum."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Error voluptatibus dolore rerum sed."], ["published", true], ["slug", "nihil-qui-72"], ["title", "Dolorum eveniet repellat est."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test74' OR lower(name) = 'rspec74' OR lower(name) = 'ruby74' OR lower(name) = '#rails74') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails74"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-voluptas-73' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 116], ["blog_id", 1], ["body", "Maxime aut ut et provident id cupiditate ab. Quia repellendus non soluta rerum sunt. Rem amet quasi eligendi ratione rerum. Illum quo iste necessitatibus tempore rerum et ex. Incidunt sit quod ea enim placeat non."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Laboriosam architecto doloribus nulla esse."], ["published", true], ["slug", "qui-voluptas-73"], ["title", "At iusto doloribus dicta."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test75' OR lower(name) = 'rspec75' OR lower(name) = 'ruby75' OR lower(name) = '#rails75') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails75"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nemo-esse-74' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 117], ["blog_id", 1], ["body", "Maxime in molestiae molestiae deleniti ad numquam qui. Ipsa voluptas dolores sint minus itaque. Doloribus eos laborum eius. Nulla aliquam consequatur quis qui inventore sed dolorem. Hic minima doloremque aliquam non accusamus enim. Esse distinctio non ea eum eos tempore."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Ut natus."], ["published", true], ["slug", "nemo-esse-74"], ["title", "Enim sed nemo officia id."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'in-totam-75' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 118], ["blog_id", 1], ["body", "Non qui velit voluptas dolor. Earum numquam voluptates. Est et laborum. Sunt nostrum corporis. Inventore est laborum."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Necessitatibus ipsa debitis totam."], ["published", true], ["slug", "in-totam-75"], ["title", "Maiores laborum distinctio eos repudiandae."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_681ac4c ON posts_taggings_681ac4c.taggable_id = almanac_posts.id AND posts_taggings_681ac4c.taggable_type = 'Almanac::Post' AND posts_taggings_681ac4c.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 120], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["description", "Et neque numquam similique. Voluptatem nemo nisi. Error neque autem amet occaecati numquam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Amet et quos quas quasi at."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'facere-cupiditate-76' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 119], ["blog_id", 1], ["body", "Labore blanditiis aliquid et rerum. Consequuntur aliquam facere adipisci. Voluptatem pariatur et repellendus nemo. Facere expedita eligendi. Fugit maxime omnis aperiam ipsa impedit. Sapiente consequatur totam recusandae alias quo. Autem expedita a eligendi ut."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Tenetur."], ["published", true], ["slug", "facere-cupiditate-76"], ["title", "Nulla perferendis voluptatibus."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test76' OR lower(name) = 'rspec76' OR lower(name) = 'ruby76' OR lower(name) = '#rails76') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails76"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 122], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["description", "Id sed autem tempora nam et totam eum. Porro et asperiores dolorem. Laboriosam dolor tempore voluptas fugiat reprehenderit quos. Impedit omnis animi. Occaecati quia ad impedit quo libero."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quo sint."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'perspiciatis-nobis-77' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 121], ["blog_id", 1], ["body", "Et dolorem iure nesciunt sunt velit. Fugit reprehenderit consequuntur enim qui dolore. Quod odit magnam nisi quam hic vel dignissimos. Labore atque rem inventore laudantium reiciendis veritatis. Minus ut magnam vitae quis."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Odit a quam reiciendis consequatur qui."], ["published", true], ["slug", "perspiciatis-nobis-77"], ["title", "Dolores vitae maxime non quia eum quod iusto."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test77' OR lower(name) = 'rspec77' OR lower(name) = 'ruby77' OR lower(name) = '#rails77') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test77"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec77"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby77"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails77"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 124], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["description", "Corporis odio saepe aliquid vel. Non iusto dolores sed reiciendis perspiciatis eveniet asperiores. Id consequatur deserunt veniam. Natus et deserunt dignissimos ratione perspiciatis autem."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Tempore consequatur consectetur ea a laborum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nobis-earum-78' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 123], ["blog_id", 1], ["body", "Eum numquam nam doloribus necessitatibus voluptatem. Voluptatem fuga sunt cupiditate. Eveniet sed ea aliquam excepturi eum porro. Vel molestiae occaecati ipsum et. Ut esse ut illum ad eum molestiae ut."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Sit quis saepe in consequuntur modi."], ["published", true], ["slug", "nobis-earum-78"], ["title", "Perspiciatis inventore cum eos."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test78' OR lower(name) = 'rspec78' OR lower(name) = 'ruby78' OR lower(name) = '#rails78') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test78"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec78"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby78"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails78"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "myrtis@example.org"], ["author_name", "Reyna Walsh"], ["body", "Sunt omnis iusto veritatis laborum perferendis consequatur. Voluptas impedit qui aut quasi quia. Saepe non delectus voluptas eligendi animi."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" ORDER BY id ASC  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 126], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["description", "Totam sunt tenetur et. Et ut veritatis. Assumenda consectetur tenetur laboriosam blanditiis eum. Ex laboriosam corporis quisquam quaerat. Consequatur beatae eos commodi quod officia hic."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Nihil et quidem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eos-cupiditate-79' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 125], ["blog_id", 1], ["body", "Rerum earum animi quis et. Dolorum blanditiis alias consectetur. Sed consequatur corporis. Dolores eveniet consequatur numquam vero neque voluptatem. Velit ut quasi aut."], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["excerpt", "Perspiciatis quaerat et commodi beatae vitae."], ["published", true], ["slug", "eos-cupiditate-79"], ["title", "In excepturi voluptas."], ["updated_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test79' OR lower(name) = 'rspec79' OR lower(name) = 'ruby79' OR lower(name) = '#rails79') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails79"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:24 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 128], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["description", "Non alias sint. Et sunt voluptates qui. Qui non impedit repudiandae quo. Aut nobis iusto fugiat."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Omnis sed corporis sit."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'officia-omnis-80' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 127], ["blog_id", 1], ["body", "Non magni debitis reprehenderit voluptas vero mollitia qui. Enim facilis sed ut recusandae quia. Voluptatem sunt et sunt nostrum ut voluptatem. Tempora cupiditate quod officiis est. Consequatur velit cum. Maiores dolores et. Eligendi et saepe autem quas impedit architecto."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["excerpt", "Necessitatibus rem."], ["published", true], ["slug", "officia-omnis-80"], ["title", "Provident voluptatibus nobis eius quisquam iste."], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test80' OR lower(name) = 'rspec80' OR lower(name) = 'ruby80' OR lower(name) = '#rails80') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test80"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec80"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby80"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails80"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "hal@example.org"], ["author_name", "Callie Hintz DDS"], ["body", "Quis praesentium voluptatibus itaque ipsa sunt quia. Hic dolor accusamus vitae similique et. Autem voluptatem quisquam officiis quia veritatis."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "jadon@example.net"], ["author_name", "Lisette Ortiz"], ["body", "Officia nostrum similique tenetur consequatur dolor dolores et."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "cordelia_kirlin@example.com"], ["author_name", "Mr. Melissa West"], ["body", "Esse sint minus. Accusamus eius qui iusto corrupti. Vel qui voluptatem."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "athena@example.com"], ["author_name", "Guy Mueller"], ["body", "Aspernatur quidem provident."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "aaron.simonis@example.org"], ["author_name", "Griffin Cartwright"], ["body", "Possimus amet assumenda blanditiis veritatis libero maxime. Rerum recusandae eligendi corrupti voluptates dolores beatae."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "merritt_douglas@example.org"], ["author_name", "Kristoffer Hettinger"], ["body", "Ut eum fuga explicabo sed et cupiditate."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "kayla.stamm@example.org"], ["author_name", "Mariane Feil"], ["body", "Eum minima voluptatem sed cumque autem."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "lauren@example.org"], ["author_name", "Dr. Laurence Kertzmann"], ["body", "Eligendi magni voluptatibus esse maiores amet omnis blanditiis."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "gwendolyn@example.net"], ["author_name", "Dr. Merritt Homenick"], ["body", "Aut enim sit facere. Aliquid laboriosam sequi amet enim."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "vaughn.west@example.net"], ["author_name", "Kamren Blick"], ["body", "Commodi ullam qui magni eveniet."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "brisa_kuvalis@example.org"], ["author_name", "Adriana Mayer"], ["body", "Est quaerat qui."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "calista_wyman@example.com"], ["author_name", "Dylan Block"], ["body", "Distinctio nihil voluptatem voluptatem. Similique fugit quia."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "jailyn_langosh@example.com"], ["author_name", "Chauncey Pollich Jr."], ["body", "Voluptates sit repudiandae est dolore debitis. Odit et beatae."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "sister_schimmel@example.org"], ["author_name", "Carlos Roob"], ["body", "Autem deserunt sint. Explicabo quos repudiandae veritatis. Quis aut iure hic dicta molestiae velit ut."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "payton_tremblay@example.net"], ["author_name", "Delpha DuBuque"], ["body", "In ex ut excepturi labore facere velit non."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments" WHERE "almanac_comments"."spam" = 't'  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mazie@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mazie@example.net"], ["encrypted_password", "$2a$04$V79eliUHM/8znvJvUkPrRO5kcOgtjbUPhRWr8r/ZeTeevl7P3H6vC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 130], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["description", "Fuga voluptate harum eveniet fugit aliquid. Voluptate hic et aliquid id omnis. Sit sed dolorem porro ut. Fuga quisquam placeat enim dicta quas temporibus ut. Est eius illo voluptatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ipsum omnis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'est-inventore-81' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 129], ["blog_id", 1], ["body", "Dolores eaque libero quia. Accusamus dolorem quaerat cupiditate. Aut ut fugiat deserunt aut expedita rerum. Autem accusantium iure voluptatum ut deleniti. Voluptatum est autem. Earum facilis eum exercitationem consequuntur sit tenetur."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["excerpt", "Vero est delectus temporibus eligendi quaerat."], ["published", true], ["slug", "est-inventore-81"], ["title", "Soluta ipsa et et modi explicabo quia."], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test81' OR lower(name) = 'rspec81' OR lower(name) = 'ruby81' OR lower(name) = '#rails81') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test81"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec81"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby81"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails81"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Marty Greenfelder", "author_email"=>"lynn@example.net", "body"=>"Iure molestiae minus autem eos a vitae."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "lynn@example.net"], ["author_name", "Marty Greenfelder"], ["body", "Iure molestiae minus autem eos a vitae."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/est-inventore-81 Completed 302 Found in 8ms (ActiveRecord: 0.5ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'victor@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "victor@example.com"], ["encrypted_password", "$2a$04$f6hLhEeWrlGqTwRoUpZ/i.XFwJCVTIvLq3nafPDi0A30d9LVPJNJO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 132], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["description", "Suscipit qui et nam voluptas. Ullam aut amet ipsam nobis eum. Repellendus accusamus hic illo voluptatibus deserunt saepe. Cum assumenda eos nisi."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Itaque est qui soluta molestiae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'veritatis-unde-82' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 131], ["blog_id", 1], ["body", "Quaerat tenetur ab. Aut molestiae dolores veniam. Ut et iure distinctio nesciunt quia ex dolor. Nam beatae error voluptates soluta sunt et. Pariatur aut dignissimos deserunt iste et quisquam natus. Saepe voluptatibus porro."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["excerpt", "Repellendus cumque saepe."], ["published", true], ["slug", "veritatis-unde-82"], ["title", "Quae quos facilis nesciunt."], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test82' OR lower(name) = 'rspec82' OR lower(name) = 'ruby82' OR lower(name) = '#rails82') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test82"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec82"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby82"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails82"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_comments"  Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Rey Kautzer", "author_email"=>"dennis@example.com", "body"=>nil}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Redirected to http://test.host/almanac/veritatis-unde-82 Completed 302 Found in 7ms (ActiveRecord: 0.2ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mazie@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mazie@example.net"], ["encrypted_password", "$2a$04$oy04uey9tDgrhLM/hWSkVeQFpWOwoPyP7oOypPKgtLxtjMNevl8mm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (28.9ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 134], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["description", "Fuga voluptate harum eveniet fugit aliquid. Voluptate hic et aliquid id omnis. Sit sed dolorem porro ut. Fuga quisquam placeat enim dicta quas temporibus ut. Est eius illo voluptatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ipsum omnis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'est-inventore-83' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 133], ["blog_id", 1], ["body", "Dolores eaque libero quia. Accusamus dolorem quaerat cupiditate. Aut ut fugiat deserunt aut expedita rerum. Autem accusantium iure voluptatum ut deleniti. Voluptatum est autem. Earum facilis eum exercitationem consequuntur sit tenetur."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["excerpt", "Vero est delectus temporibus eligendi quaerat."], ["published", true], ["slug", "est-inventore-83"], ["title", "Soluta ipsa et et modi explicabo quia."], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test83' OR lower(name) = 'rspec83' OR lower(name) = 'ruby83' OR lower(name) = '#rails83') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails83' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails83"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Marty Greenfelder", "author_email"=>"lynn@example.net", "body"=>"Iure molestiae minus autem eos a vitae."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "lynn@example.net"], ["author_name", "Marty Greenfelder"], ["body", "Iure molestiae minus autem eos a vitae."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/est-inventore-83 Completed 302 Found in 8ms (ActiveRecord: 0.5ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'victor@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "victor@example.com"], ["encrypted_password", "$2a$04$inbaL/HVpvtdHuRDpNF4YOSNKKnXaS4OwzElAHY9MdanIzosz9yPO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 136], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["description", "Suscipit qui et nam voluptas. Ullam aut amet ipsam nobis eum. Repellendus accusamus hic illo voluptatibus deserunt saepe. Cum assumenda eos nisi."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Itaque est qui soluta molestiae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'veritatis-unde-84' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 135], ["blog_id", 1], ["body", "Quaerat tenetur ab. Aut molestiae dolores veniam. Ut et iure distinctio nesciunt quia ex dolor. Nam beatae error voluptates soluta sunt et. Pariatur aut dignissimos deserunt iste et quisquam natus. Saepe voluptatibus porro."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["excerpt", "Repellendus cumque saepe."], ["published", true], ["slug", "veritatis-unde-84"], ["title", "Quae quos facilis nesciunt."], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test84' OR lower(name) = 'rspec84' OR lower(name) = 'ruby84' OR lower(name) = '#rails84') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails84"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments" Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Rey Kautzer", "author_email"=>"dennis@example.com", "body"=>"Maxime at veritatis architecto voluptatem. Sunt cum voluptas doloribus voluptatibus et. Temporibus omnis ratione aliquam distinctio."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "dennis@example.com"], ["author_name", "Rey Kautzer"], ["body", "Maxime at veritatis architecto voluptatem. Sunt cum voluptas doloribus voluptatibus et. Temporibus omnis ratione aliquam distinctio."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/veritatis-unde-84 Completed 302 Found in 7ms (ActiveRecord: 0.5ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mazie@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mazie@example.net"], ["encrypted_password", "$2a$04$TbR/05ox76UQDYQBzfgUru90.pb8z4Vl.GQZYIWrJdD1MOs/5/TnW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 138], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["description", "Fuga voluptate harum eveniet fugit aliquid. Voluptate hic et aliquid id omnis. Sit sed dolorem porro ut. Fuga quisquam placeat enim dicta quas temporibus ut. Est eius illo voluptatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ipsum omnis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'est-inventore-85' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 137], ["blog_id", 1], ["body", "Dolores eaque libero quia. Accusamus dolorem quaerat cupiditate. Aut ut fugiat deserunt aut expedita rerum. Autem accusantium iure voluptatum ut deleniti. Voluptatum est autem. Earum facilis eum exercitationem consequuntur sit tenetur."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["excerpt", "Vero est delectus temporibus eligendi quaerat."], ["published", true], ["slug", "est-inventore-85"], ["title", "Soluta ipsa et et modi explicabo quia."], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test85' OR lower(name) = 'rspec85' OR lower(name) = 'ruby85' OR lower(name) = '#rails85') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test85' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails85' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails85"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "lynn@example.net"], ["author_name", "Marty Greenfelder"], ["body", "Iure molestiae minus autem eos a vitae."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#destroy as HTML Parameters: {"id"=>"1", "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "almanac_comments" WHERE "almanac_comments"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/1 Completed 302 Found in 8ms (ActiveRecord: 0.5ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'victor@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "victor@example.com"], ["encrypted_password", "$2a$04$TYIldlFpYgn8KTTXkNOWRuy0kK.74gKm68egYCbIYkTT1Twu/Paua"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 140], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["description", "Suscipit qui et nam voluptas. Ullam aut amet ipsam nobis eum. Repellendus accusamus hic illo voluptatibus deserunt saepe. Cum assumenda eos nisi."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Itaque est qui soluta molestiae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'veritatis-unde-86' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 139], ["blog_id", 1], ["body", "Quaerat tenetur ab. Aut molestiae dolores veniam. Ut et iure distinctio nesciunt quia ex dolor. Nam beatae error voluptates soluta sunt et. Pariatur aut dignissimos deserunt iste et quisquam natus. Saepe voluptatibus porro."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["excerpt", "Repellendus cumque saepe."], ["published", true], ["slug", "veritatis-unde-86"], ["title", "Quae quos facilis nesciunt."], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test86' OR lower(name) = 'rspec86' OR lower(name) = 'ruby86' OR lower(name) = '#rails86') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test86"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec86"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby86"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails86"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "dennis@example.com"], ["author_name", "Rey Kautzer"], ["body", "Maxime at veritatis architecto voluptatem. Sunt cum voluptas doloribus voluptatibus et. Temporibus omnis ratione aliquam distinctio."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_comments" Processing by Almanac::CommentsController#destroy as HTML Parameters: {"id"=>"1", "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) DELETE FROM "almanac_comments" WHERE "almanac_comments"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/1 Completed 302 Found in 7ms (ActiveRecord: 0.4ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mazie@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mazie@example.net"], ["encrypted_password", "$2a$04$LHZnWfcBe61f/eEIN1nwtOttXcN2nRKdluLlJkyynp85Q1Y/WZI5C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 142], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["description", "Fuga voluptate harum eveniet fugit aliquid. Voluptate hic et aliquid id omnis. Sit sed dolorem porro ut. Fuga quisquam placeat enim dicta quas temporibus ut. Est eius illo voluptatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ipsum omnis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'est-inventore-87' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 141], ["blog_id", 1], ["body", "Dolores eaque libero quia. Accusamus dolorem quaerat cupiditate. Aut ut fugiat deserunt aut expedita rerum. Autem accusantium iure voluptatum ut deleniti. Voluptatum est autem. Earum facilis eum exercitationem consequuntur sit tenetur."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["excerpt", "Vero est delectus temporibus eligendi quaerat."], ["published", true], ["slug", "est-inventore-87"], ["title", "Soluta ipsa et et modi explicabo quia."], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test87' OR lower(name) = 'rspec87' OR lower(name) = 'ruby87' OR lower(name) = '#rails87') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails87"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'marty.greenfelder@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "marty.greenfelder@example.net"], ["encrypted_password", "$2a$04$/soiPXXHFN1ZS4DAfrFy1.wkOea7XxE3HCQzWhIjTXac38e.qiJlK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 144], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["description", "Fugiat aliquid consequatur eius minima. Adipisci natus qui et soluta vitae. Ut consequatur eligendi."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Praesentium quod ducimus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'velit-doloribus-88' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 143], ["blog_id", 1], ["body", "Laudantium voluptatibus autem aliquid. Eos aut in facere quaerat voluptatem impedit voluptatem. Enim doloremque necessitatibus. Ea corporis maxime autem non. Pariatur voluptatem deleniti dolor."], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["excerpt", "Ut qui."], ["published", true], ["slug", "velit-doloribus-88"], ["title", "A eveniet voluptatem quod."], ["updated_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test88' OR lower(name) = 'rspec88' OR lower(name) = 'ruby88' OR lower(name) = '#rails88') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails88"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:49:25 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction Connecting to database specified by database.yml  (1.0ms) DELETE FROM "users";  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';  (0.7ms) DELETE FROM "almanac_posts";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_posts';  (0.9ms) DELETE FROM "almanac_images";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_images';  (1.1ms) DELETE FROM "tags";  (0.1ms) DELETE FROM sqlite_sequence where name = 'tags';  (0.9ms) DELETE FROM "taggings";  (0.1ms) DELETE FROM sqlite_sequence where name = 'taggings';  (0.9ms) DELETE FROM "almanac_comments";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_comments';  (0.8ms) DELETE FROM "almanac_blogs";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_blogs';  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (1.7ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (5.6ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 2], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["description", "Aliquid voluptate eligendi sunt. Dicta excepturi et possimus ducimus sint ea aspernatur. Quo aut aspernatur neque odio quo sit officiis. Odio inventore similique aliquid nostrum beatae iure et."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quis inventore ipsam incidunt sit repellendus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sequi-necessitatibus-1' LIMIT 1 SQL (0.6ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Fugit expedita quidem dolorem excepturi. Sit nam nobis et quia et tempora. Sit possimus nihil suscipit. Illum officia molestiae. Velit non quo distinctio eius. Quo suscipit ex."], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["excerpt", "Animi molestias quia labore cumque voluptatem."], ["published", true], ["slug", "sequi-necessitatibus-1"], ["title", "Accusamus maiores error omnis."], ["updated_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test1' OR lower(name) = 'rspec1' OR lower(name) = 'ruby1' OR lower(name) = '#rails1') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test1"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby1"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails1"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 4], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["description", "Et quasi et eos nulla soluta vero. Architecto dolor nihil alias officiis neque. Sed sit recusandae omnis voluptates. Et accusamus possimus ipsam quam. Quasi qui magni quia officiis et fuga similique."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sed rerum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'libero-error-2' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 3], ["blog_id", 1], ["body", "Assumenda laboriosam aut est blanditiis. Voluptatem ab aspernatur. Repellat alias nisi facilis. Officia et aut voluptates omnis optio numquam odit. Ea ut doloribus ut necessitatibus."], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["excerpt", "Qui doloribus inventore architecto beatae recusandae."], ["published", true], ["slug", "libero-error-2"], ["title", "Tempore qui sed voluptatem nihil."], ["updated_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test2' OR lower(name) = 'rspec2' OR lower(name) = 'ruby2' OR lower(name) = '#rails2') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test2"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec2"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby2"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails2"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 6], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["description", "Qui est velit similique. Eius autem necessitatibus vitae fugit veritatis tenetur commodi. Officiis sed dolorem consequatur deleniti atque."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Velit facere repudiandae voluptatibus veritatis id ut."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sed-eum-3' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 5], ["blog_id", 1], ["body", "Ipsam eligendi reprehenderit et officiis voluptas. Dolorem et non. Adipisci debitis tempore omnis voluptates totam suscipit explicabo. Nesciunt deserunt veritatis consequatur non ratione optio. Reprehenderit iusto qui odit. Et ipsa sint deleniti."], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["excerpt", "Fuga autem voluptatum aspernatur dignissimos quod."], ["published", true], ["slug", "sed-eum-3"], ["title", "Illum quae error harum iste placeat libero natus."], ["updated_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test3' OR lower(name) = 'rspec3' OR lower(name) = 'ruby3' OR lower(name) = '#rails3') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test3"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec3"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby3"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails3"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 8], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["description", "Eos eum eveniet atque ea qui. Quaerat accusamus maxime vel. Voluptatem ut incidunt iusto et ipsa vel qui. Aspernatur autem et sunt. Libero et porro beatae."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Eos id debitis aut."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-unde-4' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 7], ["blog_id", 1], ["body", "Ullam magni praesentium repellendus adipisci in. Ut asperiores nemo blanditiis laboriosam modi omnis et. Numquam labore vel. Enim explicabo maiores perspiciatis ut. Alias ut placeat iure quia assumenda."], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["excerpt", "Consequatur beatae explicabo."], ["published", true], ["slug", "et-unde-4"], ["title", "Aliquid nostrum veritatis ipsum dignissimos dicta quasi."], ["updated_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test4' OR lower(name) = 'rspec4' OR lower(name) = 'ruby4' OR lower(name) = '#rails4') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails4"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "helene@example.net"], ["author_name", "Sunny Osinski"], ["body", "Voluptates quia excepturi est qui ipsum voluptatem."], ["created_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:50:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" ORDER BY id ASC  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 10], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["description", "Asperiores atque fuga et exercitationem dolores accusamus nemo. Veritatis totam nihil. Et pariatur alias ipsa dolorem saepe recusandae et. Qui ipsa quia nihil ex velit. Qui omnis est id et sunt officia blanditiis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et ut debitis corrupti."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'tempora-reiciendis-5' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 9], ["blog_id", 1], ["body", "Ea voluptas reiciendis a expedita ut nemo. Ullam voluptatem sequi rem corrupti quia a. Repudiandae voluptate provident eveniet ipsam omnis. Sed molestias sint voluptatum numquam. Porro id laboriosam dolorem. Sed cumque iusto. Commodi delectus ducimus ut qui omnis."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["excerpt", "Expedita."], ["published", true], ["slug", "tempora-reiciendis-5"], ["title", "Animi non dolor veritatis placeat quasi eos."], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test5' OR lower(name) = 'rspec5' OR lower(name) = 'ruby5' OR lower(name) = '#rails5') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails5"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "ansel_bosco@example.org"], ["author_name", "Rosa Mitchell"], ["body", "Illum molestiae ex voluptatem."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "trevion_schimmel@example.org"], ["author_name", "Geovanny Botsford PhD"], ["body", "Quis officiis et et natus recusandae necessitatibus. Animi sed ab repellendus."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "parker@example.com"], ["author_name", "Kyla Predovic DDS"], ["body", "Optio sit voluptatem quibusdam maxime nobis consequuntur. Expedita veritatis animi voluptas sapiente atque necessitatibus. Quis et quos qui."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "cielo.towne@example.net"], ["author_name", "Benedict Welch"], ["body", "Rerum sint et incidunt illo. Quo non quas vitae incidunt."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "ayana_gerlach@example.com"], ["author_name", "Karina Emmerich"], ["body", "Maiores ab autem voluptatem dicta necessitatibus ut omnis."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "columbus@example.com"], ["author_name", "Mikel Von"], ["body", "Dolore et quam. Eveniet ab harum ut explicabo et sed. Voluptatum quis et et quasi aspernatur animi."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "narciso@example.org"], ["author_name", "Nicholas Klocko"], ["body", "Voluptas repellendus quia rerum consequatur reprehenderit aut."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "oran.kirlin@example.net"], ["author_name", "Nikki Barton"], ["body", "Tempora ullam repellat. Enim maiores modi esse necessitatibus aut dolorem. Unde eligendi sit eos tempore a."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "jazmyn.franecki@example.net"], ["author_name", "Flavio Littel"], ["body", "Ad quod est quidem aut ipsum iure. Id et illo quidem magni ea."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "virgil.conroy@example.com"], ["author_name", "Vern Stehr"], ["body", "Tempora possimus eligendi cum placeat officia repudiandae non."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "amelia@example.org"], ["author_name", "Alfredo Klein"], ["body", "Nobis id temporibus labore eligendi. Et corporis dignissimos consequatur. Nam voluptatem consequatur ipsam quam modi."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "brianne@example.com"], ["author_name", "Ms. Beatrice Ullrich"], ["body", "In tempora dolores ut et."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "elsa.heaney@example.org"], ["author_name", "Mr. Santa Moen"], ["body", "Modi repudiandae vitae sit et amet eius tempore. Dolor quisquam est dolores quia quia. Consequatur molestiae harum consectetur id sit expedita."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "abdul@example.com"], ["author_name", "Craig Powlowski"], ["body", "Eos repellendus excepturi."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "heloise.stracke@example.com"], ["author_name", "Dan Leuschke"], ["body", "Esse cum recusandae omnis officiis est dignissimos. Sint optio aspernatur tenetur reprehenderit et saepe. Et fugit optio explicabo commodi fugiat qui at."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments" WHERE "almanac_comments"."spam" = 't'  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'eileen@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "eileen@example.com"], ["encrypted_password", "$2a$04$mqvbrw.UHVv4.zpAN3mI7eo53f9pTObafeu1h0o4LVOZ8g5m9yT6G"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 11], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["description", "Ratione ex corporis omnis accusantium. Vero mollitia iusto deleniti facilis aut ut. Eos harum soluta maxime."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Consequatur est rerum culpa necessitatibus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptas-vel-6' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 12], ["blog_id", 1], ["body", "Tenetur rerum illo temporibus officiis fugiat quis sint. Dicta quia dolor dolore vel. Ut ut et dicta et blanditiis explicabo perspiciatis. Harum amet enim commodi provident voluptates. Laudantium repudiandae aut quod odit maiores quos."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["excerpt", "Quo eum."], ["published", true], ["slug", "voluptas-vel-6"], ["title", "Delectus est velit rerum eligendi eius aut fuga."], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test6' OR lower(name) = 'rspec6' OR lower(name) = 'ruby6' OR lower(name) = '#rails6') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test6"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec6"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby6"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails6"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'molestiae-eos-7' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 13], ["blog_id", 1], ["body", "Recusandae rem qui quidem reprehenderit dolor qui placeat. Explicabo nobis adipisci. Repellendus ullam qui. Maxime dolor non vel tempora. Sit dolor ducimus. Est laborum itaque."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["excerpt", "Odit fugiat alias inventore."], ["published", true], ["slug", "molestiae-eos-7"], ["title", "Qui libero expedita magnam ex et dicta et."], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test7' OR lower(name) = 'rspec7' OR lower(name) = 'ruby7' OR lower(name) = '#rails7') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test7' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails7"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'necessitatibus-odit-8' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 14], ["blog_id", 1], ["body", "Et dolores enim laborum. Numquam enim dolor ab at. Similique blanditiis excepturi ut iusto explicabo. Est eligendi ratione mollitia atque quam non consequatur. Mollitia excepturi non beatae cum alias."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["excerpt", "Eius aut officiis sed alias."], ["published", true], ["slug", "necessitatibus-odit-8"], ["title", "Et dolorem ab illum."], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test8' OR lower(name) = 'rspec8' OR lower(name) = 'ruby8' OR lower(name) = '#rails8') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails8"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'unde-in-9' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 15], ["blog_id", 1], ["body", "Natus fuga autem. Beatae consequatur neque consequuntur aut quisquam nesciunt vero. Non quia voluptatem modi sunt enim provident ut. Illum quae error harum iste placeat libero natus. Aut non consequatur dolores nesciunt debitis quibusdam. Ex facere et."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["excerpt", "Aut possimus voluptas."], ["published", true], ["slug", "unde-in-9"], ["title", "Explicabo id accusantium blanditiis corrupti cumque."], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test9' OR lower(name) = 'rspec9' OR lower(name) = 'ruby9' OR lower(name) = '#rails9') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test9"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec9"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby9"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails9"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'cum-autem-10' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 16], ["blog_id", 1], ["body", "Provident laborum eos minus eius. Velit minus odio rerum porro. Eos culpa facere atque voluptas omnis voluptas quibusdam. Est odit expedita et repellat earum. Error fugit quo cum."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["excerpt", "Adipisci debitis tempore omnis voluptates totam."], ["published", true], ["slug", "cum-autem-10"], ["title", "Accusantium nesciunt dolorem fugit nisi sit qui."], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test10' OR lower(name) = 'rspec10' OR lower(name) = 'ruby10' OR lower(name) = '#rails10') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test10"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec10"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby10"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails10"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Parameters: {"tag_name"=>"common"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common') Rendered /Users/vasinov/dev/almanac/app/views/almanac/posts/tag.html.haml within layouts/almanac/application (0.6ms) Completed 200 OK in 54ms (Views: 46.6ms | ActiveRecord: 0.2ms) Almanac::Post Load (0.3ms) SELECT "almanac_posts".* FROM "almanac_posts" JOIN taggings posts_taggings_528178d ON posts_taggings_528178d.taggable_id = almanac_posts.id AND posts_taggings_528178d.taggable_type = 'Almanac::Post' AND posts_taggings_528178d.tag_id = 1 WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'iac_price@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "iac_price@example.net"], ["encrypted_password", "$2a$04$9.bXY6jcVrQ2bxkl3.8OZ.ZcWE86gMPpggfoIAx0ehl2EkuR69i/e"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 17], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["description", "Possimus eligendi iste. Quam voluptatem aut. Dolor et quia distinctio non tenetur."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ut aut et."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 6ms (Views: 1.6ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'eileen@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "eileen@example.com"], ["encrypted_password", "$2a$04$6ZGQHMn57k0pk31P3jY7LuMN2/DpVjwonkYE6CUgBmKekNo9h.icy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 18], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["description", "Ratione ex corporis omnis accusantium. Vero mollitia iusto deleniti facilis aut ut. Eos harum soluta maxime."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Consequatur est rerum culpa necessitatibus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptas-vel-11' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 19], ["blog_id", 1], ["body", "Tenetur rerum illo temporibus officiis fugiat quis sint. Dicta quia dolor dolore vel. Ut ut et dicta et blanditiis explicabo perspiciatis. Harum amet enim commodi provident voluptates. Laudantium repudiandae aut quod odit maiores quos."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["excerpt", "Quo eum."], ["published", true], ["slug", "voluptas-vel-11"], ["title", "Delectus est velit rerum eligendi eius aut fuga."], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test11' OR lower(name) = 'rspec11' OR lower(name) = 'ruby11' OR lower(name) = '#rails11') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test11"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec11"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby11"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails11"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Testz", "slug"=>"eveniet-unde-12", "excerpt"=>"Iusto dicta eos repellendus ut.", "body"=>"Harum voluptates ex. Dolor in consectetur. Voluptatem omnis eius rerum. Qui et magni. Et provident consequuntur. Et dolores officiis laboriosam.", "published"=>true, "tag_list"=>"common,test12,rspec12,ruby12,#rails12", "author_id"=>"20", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'eveniet-unde-12' AND "almanac_posts"."id" != 1) LIMIT 1  (0.2ms) UPDATE "almanac_posts" SET "title" = 'Testz', "slug" = 'eveniet-unde-12', "excerpt" = 'Iusto dicta eos repellendus ut.', "body" = 'Harum voluptates ex. Dolor in consectetur. Voluptatem omnis eius rerum. Qui et magni. Et provident consequuntur. Et dolores officiis laboriosam.', "author_id" = 20, "updated_at" = '2012-12-28 04:50:57.375791' WHERE "almanac_posts"."id" = 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test12' OR lower(name) = 'rspec12' OR lower(name) = 'ruby12' OR lower(name) = '#rails12') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test12' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test12"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec12"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby12"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails12"]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."tagger_type" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."context" = 'tags' AND "taggings"."tag_id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 46ms (ActiveRecord: 3.0ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'johanna_okuneva@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "johanna_okuneva@example.net"], ["encrypted_password", "$2a$04$HOEGAGx.mqr3Mk3aniceCOOQ2Ivz3ohdrKgkL6DS0/kK3ZZYVrZ2C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 21], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["description", "Mollitia aut deserunt ut quia quis eum qui. Aut et autem natus accusamus eum qui. Vitae iusto soluta et aut enim."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et autem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sit-aut-13' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 22], ["blog_id", 1], ["body", "Sit doloribus expedita ut nostrum est sunt. Libero sit aut eos quia. Nihil ratione dignissimos consequatur perspiciatis totam. Sint voluptas iure. Ut mollitia consequuntur aperiam quisquam. Quos ex unde nisi. Voluptas velit qui est sequi enim suscipit."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["excerpt", "Rerum."], ["published", true], ["slug", "sit-aut-13"], ["title", "Voluptas natus nisi provident cupiditate reprehenderit ratione."], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test13' OR lower(name) = 'rspec13' OR lower(name) = 'ruby13' OR lower(name) = '#rails13') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails13"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Ut sunt natus eaque.", "slug"=>"beatae-harum-14", "excerpt"=>"Assumenda non voluptatum atque iusto tenetur.", "body"=>"Aut dolores et debitis reiciendis. Tempore distinctio ipsum enim ut labore officiis. Vel consequatur quaerat ut veritatis odio praesentium perspiciatis. Maxime nihil est sint. Dolor id accusamus. A est quis sed sed et corporis. Fugit veritatis quae harum consequatur voluptas.", "published"=>true, "tag_list"=>"common,test14,rspec14,ruby14,#rails14", "author_id"=>"23", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'beatae-harum-14' AND "almanac_posts"."id" != 1) LIMIT 1  (0.1ms) UPDATE "almanac_posts" SET "title" = 'Ut sunt natus eaque.', "slug" = 'beatae-harum-14', "excerpt" = 'Assumenda non voluptatum atque iusto tenetur.', "body" = 'Aut dolores et debitis reiciendis. Tempore distinctio ipsum enim ut labore officiis. Vel consequatur quaerat ut veritatis odio praesentium perspiciatis. Maxime nihil est sint. Dolor id accusamus. A est quis sed sed et corporis. Fugit veritatis quae harum consequatur voluptas.', "author_id" = 23, "updated_at" = '2012-12-28 04:50:57.459826' WHERE "almanac_posts"."id" = 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test14' OR lower(name) = 'rspec14' OR lower(name) = 'ruby14' OR lower(name) = '#rails14') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test14' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test14"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec14"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby14"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails14"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."tagger_type" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."context" = 'tags' AND "taggings"."tag_id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 30ms (ActiveRecord: 2.7ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'eileen@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "eileen@example.com"], ["encrypted_password", "$2a$04$d0MLgSPEfwxExtxyn406xe.9H5Jy0BmsaWdi86PvvD8onq4VUY7t6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 24], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["description", "Ratione ex corporis omnis accusantium. Vero mollitia iusto deleniti facilis aut ut. Eos harum soluta maxime."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Consequatur est rerum culpa necessitatibus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptas-vel-15' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 25], ["blog_id", 1], ["body", "Tenetur rerum illo temporibus officiis fugiat quis sint. Dicta quia dolor dolore vel. Ut ut et dicta et blanditiis explicabo perspiciatis. Harum amet enim commodi provident voluptates. Laudantium repudiandae aut quod odit maiores quos."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["excerpt", "Quo eum."], ["published", true], ["slug", "voluptas-vel-15"], ["title", "Delectus est velit rerum eligendi eius aut fuga."], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test15' OR lower(name) = 'rspec15' OR lower(name) = 'ruby15' OR lower(name) = '#rails15') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.7ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test15"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec15"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby15"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails15"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"eveniet-unde-16", "excerpt"=>"Iusto dicta eos repellendus ut.", "body"=>"Harum voluptates ex. Dolor in consectetur. Voluptatem omnis eius rerum. Qui et magni. Et provident consequuntur. Et dolores officiis laboriosam.", "published"=>true, "tag_list"=>"common,test16,rspec16,ruby16,#rails16", "author_id"=>"26", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'eveniet-unde-16' AND "almanac_posts"."id" != 1) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 52ms (Views: 2.2ms | ActiveRecord: 0.6ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'johanna_okuneva@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "johanna_okuneva@example.net"], ["encrypted_password", "$2a$04$n9768GHdp9SihH86H2w26OkLNzdkGpmCaPAtp/LyioFu3vY7wGWsO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 27], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["description", "Mollitia aut deserunt ut quia quis eum qui. Aut et autem natus accusamus eum qui. Vitae iusto soluta et aut enim."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et autem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sit-aut-17' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 28], ["blog_id", 1], ["body", "Sit doloribus expedita ut nostrum est sunt. Libero sit aut eos quia. Nihil ratione dignissimos consequatur perspiciatis totam. Sint voluptas iure. Ut mollitia consequuntur aperiam quisquam. Quos ex unde nisi. Voluptas velit qui est sequi enim suscipit."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["excerpt", "Rerum."], ["published", true], ["slug", "sit-aut-17"], ["title", "Voluptas natus nisi provident cupiditate reprehenderit ratione."], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test17' OR lower(name) = 'rspec17' OR lower(name) = 'ruby17' OR lower(name) = '#rails17') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test17"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec17"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby17"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails17"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"natus-sed-18", "excerpt"=>"Et.", "body"=>"Sed quia impedit nam. Aut dolores et debitis reiciendis. Tempore distinctio ipsum enim ut labore officiis. Vel consequatur quaerat ut veritatis odio praesentium perspiciatis. Maxime nihil est sint. Dolor id accusamus.", "published"=>true, "tag_list"=>"common,test18,rspec18,ruby18,#rails18", "author_id"=>"29", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'natus-sed-18' AND "almanac_posts"."id" != 1) LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 12ms (Views: 1.5ms | ActiveRecord: 0.6ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'eileen@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "eileen@example.com"], ["encrypted_password", "$2a$04$tHvMpF1dheRwhsz.rGP/xeK3ZolvZiVcjvDD3p0ldvJMA.KjYvY0i"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 30], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["description", "Ratione ex corporis omnis accusantium. Vero mollitia iusto deleniti facilis aut ut. Eos harum soluta maxime."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Consequatur est rerum culpa necessitatibus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Delectus est velit rerum eligendi eius aut fuga.", "slug"=>"voluptas-vel-19", "excerpt"=>"Quo eum.", "body"=>"Tenetur rerum illo temporibus officiis fugiat quis sint. Dicta quia dolor dolore vel. Ut ut et dicta et blanditiis explicabo perspiciatis. Harum amet enim commodi provident voluptates. Laudantium repudiandae aut quod odit maiores quos.", "published"=>true, "tag_list"=>"common,test19,rspec19,ruby19,#rails19", "author_id"=>"31", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptas-vel-19' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Tenetur rerum illo temporibus officiis fugiat quis sint. Dicta quia dolor dolore vel. Ut ut et dicta et blanditiis explicabo perspiciatis. Harum amet enim commodi provident voluptates. Laudantium repudiandae aut quod odit maiores quos."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["excerpt", "Quo eum."], ["published", true], ["slug", "voluptas-vel-19"], ["title", "Delectus est velit rerum eligendi eius aut fuga."], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test19' OR lower(name) = 'rspec19' OR lower(name) = 'ruby19' OR lower(name) = '#rails19') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test19"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec19"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby19"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails19"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 27ms (ActiveRecord: 2.3ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"   (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'karson_schultz@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "karson_schultz@example.com"], ["encrypted_password", "$2a$04$IfoCscLGn2YH6zUXjGG5Ke434qM7CM3O3WLEAr5wg61s6MOHmlLwC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 32], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["description", "Vitae illum qui deleniti aut ullam maxime velit. Repudiandae nobis velit id quia possimus. Doloremque delectus pariatur ea illum corrupti."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ut fugiat autem dolore."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Molestiae at odio omnis cum nesciunt.", "slug"=>"qui-repudiandae-20", "excerpt"=>"Quo placeat voluptatum doloremque in.", "body"=>"Omnis reiciendis et. Vitae et enim natus. Aut animi ut iure placeat nihil fugit. Aut et autem natus accusamus eum qui. Vitae iusto soluta et aut enim. Voluptas natus nisi provident cupiditate reprehenderit ratione. Excepturi recusandae sunt et aperiam.", "published"=>true, "tag_list"=>"common,test20,rspec20,ruby20,#rails20", "author_id"=>"33", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-repudiandae-20' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Omnis reiciendis et. Vitae et enim natus. Aut animi ut iure placeat nihil fugit. Aut et autem natus accusamus eum qui. Vitae iusto soluta et aut enim. Voluptas natus nisi provident cupiditate reprehenderit ratione. Excepturi recusandae sunt et aperiam."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["excerpt", "Quo placeat voluptatum doloremque in."], ["published", true], ["slug", "qui-repudiandae-20"], ["title", "Molestiae at odio omnis cum nesciunt."], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test20' OR lower(name) = 'rspec20' OR lower(name) = 'ruby20' OR lower(name) = '#rails20') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test20' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test20"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec20' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec20"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby20' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby20"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails20' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails20"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 27ms (ActiveRecord: 2.4ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'eileen@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "eileen@example.com"], ["encrypted_password", "$2a$04$W6rLv6C5Be4QY5zPe.zvL.pjLQ3NjF54Al/3AvmiRtLmkR/4Kbooe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 34], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["description", "Ratione ex corporis omnis accusantium. Vero mollitia iusto deleniti facilis aut ut. Eos harum soluta maxime."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Consequatur est rerum culpa necessitatibus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"delectus-unde-21", "excerpt"=>"Qui eaque et ut est.", "body"=>"Ex sunt vero voluptatem voluptatem omnis totam sequi. Cupiditate nam eius cum id quibusdam et quis. Minus sint atque cumque. Ut ut et dicta et blanditiis explicabo perspiciatis. Harum amet enim commodi provident voluptates. Laudantium repudiandae aut quod odit maiores quos.", "published"=>true, "tag_list"=>"common,test21,rspec21,ruby21,#rails21", "author_id"=>"35", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'delectus-unde-21' LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 2.1ms | ActiveRecord: 0.4ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'karson_schultz@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "karson_schultz@example.com"], ["encrypted_password", "$2a$04$8CXBhNFYXd9q2wWDlfG/0OFIKgHCvKjVdHpPwhxzDuiFkbCIDVE4y"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 36], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["description", "Vitae illum qui deleniti aut ullam maxime velit. Repudiandae nobis velit id quia possimus. Doloremque delectus pariatur ea illum corrupti."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ut fugiat autem dolore."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"harum-placeat-22", "excerpt"=>"Nesciunt sint autem dolores numquam quidem.", "body"=>"Quo aut incidunt et aut. Omnis reiciendis et. Vitae et enim natus. Aut animi ut iure placeat nihil fugit. Aut et autem natus accusamus eum qui.", "published"=>true, "tag_list"=>"common,test22,rspec22,ruby22,#rails22", "author_id"=>"37", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'harum-placeat-22' LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 1.5ms | ActiveRecord: 0.4ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'arjun@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "arjun@example.net"], ["encrypted_password", "$2a$04$K4Rd8d2cDAQHNajiflfLC.CaGPCheXcH97OS7mWq/Dk9LfcQ9vP.i"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 38], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["description", "Quo sed vero ipsam molestiae inventore. Sapiente consequatur ea saepe tempora. Eos harum soluta maxime. Delectus est velit rerum eligendi eius aut fuga. Vel consequuntur facere."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Architecto perferendis asperiores delectus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consectetur-voluptatem-23' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 39], ["blog_id", 1], ["body", "Ut ut et dicta et blanditiis explicabo perspiciatis. Harum amet enim commodi provident voluptates. Laudantium repudiandae aut quod odit maiores quos. Qui libero expedita magnam ex et dicta et. Aspernatur ut ut nam. Optio aliquam ut sit."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["excerpt", "Qui."], ["published", false], ["slug", "consectetur-voluptatem-23"], ["title", "Deleniti delectus nostrum est."], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test23' OR lower(name) = 'rspec23' OR lower(name) = 'ruby23' OR lower(name) = '#rails23') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test23"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec23"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby23"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails23' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails23"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quia-quis-24' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 40], ["blog_id", 1], ["body", "Quis officiis et et natus recusandae necessitatibus. Animi sed ab repellendus. Amet iusto vero optio qui. Dolorum soluta officiis possimus qui eos consequatur cupiditate. Aut ullam quaerat alias repellat cupiditate quae reiciendis. Est aut excepturi quos nemo asperiores expedita."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["excerpt", "Iste quidem dignissimos."], ["published", false], ["slug", "quia-quis-24"], ["title", "Est omnis modi."], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test24' OR lower(name) = 'rspec24' OR lower(name) = 'ruby24' OR lower(name) = '#rails24') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test24' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test24"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec24"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby24"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails24"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'enim-occaecati-25' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 41], ["blog_id", 1], ["body", "Ipsum totam animi et ut esse. Suscipit sint ratione porro tenetur dignissimos alias. Accusantium totam voluptatibus aut ducimus. Aut possimus voluptas sint optio. Debitis saepe inventore perspiciatis. Rerum porro repellendus quia quos totam at necessitatibus. Ea dignissimos eum ut eaque cumque atque."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["excerpt", "Et nihil iste dolores ut."], ["published", false], ["slug", "enim-occaecati-25"], ["title", "Et aut dolores sed."], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test25' OR lower(name) = 'rspec25' OR lower(name) = 'ruby25' OR lower(name) = '#rails25') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test25"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec25"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby25' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby25"]] ActsAsTaggableOn::Tag Exists (0.3ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails25"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 8ms (Views: 2.3ms | ActiveRecord: 0.1ms) Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f' ORDER BY written_at DESC, id DESC  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jo@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jo@example.com"], ["encrypted_password", "$2a$04$/Ge/Jt6euolD7EjC4i.iLOE2KNe4hY5sDaxicrI/kWxX0yOoibKmy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 42], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["description", "Laudantium fugit iste aspernatur dolores sapiente. Quo mollitia cumque. Quia non est nihil molestiae. Autem maiores aut laborum reiciendis. Cupiditate odio beatae."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Unde repellat."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'brandt@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "brandt@example.net"], ["encrypted_password", "$2a$04$/J3dulYcp3Zrztv7JuTvVOBYb7FQiasHTuX.GBkAgykVlXIGSj5V2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 43], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["description", "Sint reiciendis soluta facere perferendis. Et nesciunt fugiat eaque rerum nemo et non. Impedit explicabo cumque qui. Animi sit ipsam et. Aspernatur ut dolorum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Doloremque sint aspernatur omnis sed."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sunt-omnis-26' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 44], ["blog_id", 1], ["body", "Et non iure nisi enim. Saepe itaque et. Corrupti aliquid deserunt. Odio adipisci earum modi. A sunt ratione et temporibus ad porro. Veniam illum voluptatum vero voluptatem pariatur quia. Adipisci veritatis distinctio corporis sed."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["excerpt", "Veniam repudiandae beatae exercitationem corporis qui."], ["published", true], ["slug", "sunt-omnis-26"], ["title", "Non atque quo voluptatum inventore rem mollitia."], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test26' OR lower(name) = 'rspec26' OR lower(name) = 'ruby26' OR lower(name) = '#rails26') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails26"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quia-amet-27' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 45], ["blog_id", 1], ["body", "Mollitia eveniet ut maiores placeat fugit modi. Consequatur fuga fugiat dolor doloribus. Omnis est qui natus velit. Repellendus nihil ut molestiae dicta velit. Ut vitae harum. Explicabo ipsa a eius. Sit facilis odio veniam nihil dolor ab."], ["created_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["excerpt", "Qui quo animi."], ["published", true], ["slug", "quia-amet-27"], ["title", "Veniam non fuga nostrum."], ["updated_at", Fri, 28 Dec 2012 04:50:57 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test27' OR lower(name) = 'rspec27' OR lower(name) = 'ruby27' OR lower(name) = '#rails27') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test27' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec27"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails27"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ut-harum-28' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 46], ["blog_id", 1], ["body", "Exercitationem ut et nam et. Nemo dolores maxime est illo voluptate. Natus rerum debitis alias accusamus. Qui et voluptates sint. Autem excepturi id consequatur."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Aperiam sequi deleniti enim eos explicabo."], ["published", true], ["slug", "ut-harum-28"], ["title", "Ut omnis aliquid doloremque explicabo non."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test28' OR lower(name) = 'rspec28' OR lower(name) = 'ruby28' OR lower(name) = '#rails28') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test28"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec28"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby28"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails28"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quia-modi-29' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 47], ["blog_id", 1], ["body", "Neque sed optio et ab quas. Est odio beatae perspiciatis eligendi tenetur officiis. Consequatur ut non aspernatur aperiam quo. Temporibus quos est quo ut vel. Inventore ad aperiam voluptates quam. Molestiae laudantium sed at."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Sed est eos saepe."], ["published", true], ["slug", "quia-modi-29"], ["title", "Ex mollitia quas illum."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test29' OR lower(name) = 'rspec29' OR lower(name) = 'ruby29' OR lower(name) = '#rails29') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails29"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'accusamus-quaerat-30' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 48], ["blog_id", 1], ["body", "Ut officia rerum qui voluptate placeat. Voluptates neque sed dolorem beatae assumenda reiciendis sed. Dolores corporis vel eligendi. At odit ducimus. Incidunt quisquam atque minima non dolorum libero voluptas."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Repellendus amet reprehenderit."], ["published", true], ["slug", "accusamus-quaerat-30"], ["title", "Reprehenderit ex dolorum."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test30' OR lower(name) = 'rspec30' OR lower(name) = 'ruby30' OR lower(name) = '#rails30') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails30"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 5ms (Views: 1.3ms | ActiveRecord: 0.1ms) Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'eileen@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "eileen@example.com"], ["encrypted_password", "$2a$04$V.JChtaFEnQMj1MwwpBGOOXIBZG5gsJk0SxvEO/nD4tk5i7K9nWjK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 49], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["description", "Ratione ex corporis omnis accusantium. Vero mollitia iusto deleniti facilis aut ut. Eos harum soluta maxime."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Consequatur est rerum culpa necessitatibus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptas-vel-31' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 50], ["blog_id", 1], ["body", "Tenetur rerum illo temporibus officiis fugiat quis sint. Dicta quia dolor dolore vel. Ut ut et dicta et blanditiis explicabo perspiciatis. Harum amet enim commodi provident voluptates. Laudantium repudiandae aut quod odit maiores quos."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Quo eum."], ["published", true], ["slug", "voluptas-vel-31"], ["title", "Delectus est velit rerum eligendi eius aut fuga."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test31' OR lower(name) = 'rspec31' OR lower(name) = 'ruby31' OR lower(name) = '#rails31') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby31' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails31"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."post_id" = 1 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 23ms (ActiveRecord: 1.3ms)  (0.0ms) SELECT COUNT(*) FROM "almanac_posts"   (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'karson_schultz@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "karson_schultz@example.com"], ["encrypted_password", "$2a$04$AxzFMgEKBVNYXfv//xSxTOhVc1IC62gQ/1FKJwu/8Kdr8AREgqftS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 51], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["description", "Vitae illum qui deleniti aut ullam maxime velit. Repudiandae nobis velit id quia possimus. Doloremque delectus pariatur ea illum corrupti."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ut fugiat autem dolore."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-repudiandae-32' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 52], ["blog_id", 1], ["body", "Omnis reiciendis et. Vitae et enim natus. Aut animi ut iure placeat nihil fugit. Aut et autem natus accusamus eum qui. Vitae iusto soluta et aut enim. Voluptas natus nisi provident cupiditate reprehenderit ratione. Excepturi recusandae sunt et aperiam."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Quo placeat voluptatum doloremque in."], ["published", true], ["slug", "qui-repudiandae-32"], ["title", "Molestiae at odio omnis cum nesciunt."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test32' OR lower(name) = 'rspec32' OR lower(name) = 'ruby32' OR lower(name) = '#rails32') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails32"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."post_id" = 1 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (38.4ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 52ms (ActiveRecord: 39.5ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 54], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["description", "Minima rerum quidem aut deleniti. Voluptatem odit fugit optio velit modi. Modi tempora atque adipisci ipsa aut magni earum. Ex ea velit quia quia est voluptatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sit esse exercitationem id enim sunt omnis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quaerat-id-33' LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 55], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["description", "Nemo non ut sit sunt odit eos aut. Tenetur molestias vitae voluptatibus beatae ducimus consequuntur occaecati. Doloremque sint occaecati. Voluptas cum enim dolor quae."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Non inventore ducimus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'iusto-odit-34' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 56], ["blog_id", 1], ["body", "Et dolor numquam earum deleniti quam. Hic qui similique omnis nihil. Quibusdam perferendis repudiandae dolor ut mollitia. Blanditiis et dolorum exercitationem voluptatibus. Vero molestias aut iure explicabo non. Minima voluptatem quis."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Deserunt rerum aut."], ["published", true], ["slug", "iusto-odit-34"], ["title", "Enim qui ut."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test34' OR lower(name) = 'rspec34' OR lower(name) = 'ruby34' OR lower(name) = '#rails34') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test34"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby34' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails34"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'veniam-similique-35' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 57], ["blog_id", 1], ["body", "Aut quisquam eum distinctio et. Earum quaerat ab vel ipsam quasi dignissimos vitae. Laborum temporibus veritatis velit placeat unde. Reiciendis id velit. Illum minima magni."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Rem iste eum consequatur deserunt natus."], ["published", true], ["slug", "veniam-similique-35"], ["title", "Unde sit voluptatibus et quibusdam."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test35' OR lower(name) = 'rspec35' OR lower(name) = 'ruby35' OR lower(name) = '#rails35') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test35' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails35"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'recusandae-quia-36' LIMIT 1  (0.0ms) rollback transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 60], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["description", "Laborum consequuntur porro. Ad velit rerum molestiae aut delectus eos iure. Modi aliquam ut et est odio inventore quia."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Modi ut."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'veniam-voluptas-37' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 62], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["description", "Quo esse ea. Qui esse blanditiis molestiae. Aut consectetur at dolor deleniti. Aliquam dolores illo dignissimos quam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Voluptatem at consequatur eaque."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'odit-sit-38' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 64], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["description", "Est impedit et. Eum molestias quo totam quia. Omnis consequatur eos sunt porro dolore. Qui rem nostrum temporibus sunt dolores quam qui."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aliquid et."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 66], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["description", "Molestiae sit ratione assumenda ipsam. Aperiam odit dolores. Voluptates sed velit. Enim dolore qui. Sapiente deleniti enim aut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aliquam reprehenderit."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-quis-39' LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 68], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["description", "In occaecati aperiam natus inventore distinctio sint quia. Architecto distinctio reprehenderit voluptate hic in autem. Voluptatum sed sit minus omnis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Laborum neque tempora."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'esse-odit-40' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 70], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["description", "Eius ea maiores. Sed ab dolor illo. Modi ut minima error blanditiis voluptates esse. Perferendis aut in."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quia dolorem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 72], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["description", "Velit doloremque itaque et inventore est adipisci dolore. Debitis iusto in. Sit est itaque autem facilis dolor."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Amet iure fuga pariatur ratione."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nobis-id-41' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 71], ["blog_id", 1], ["body", "Fugit eveniet sed. Dolor sed totam porro sit qui. Ea porro maiores et id minus earum quae. Dolores esse quia repellendus. Id ut velit iure possimus dolorum magni blanditiis. Voluptates nam odit repellendus."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Quasi nam."], ["published", true], ["slug", "nobis-id-41"], ["title", "Dolorem quisquam error similique dignissimos."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test43' OR lower(name) = 'rspec43' OR lower(name) = 'ruby43' OR lower(name) = '#rails43') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test43"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec43"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby43"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails43"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 74], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["description", "Molestiae quia eum qui. Aspernatur vel minima. Accusantium aliquam deserunt veritatis id eveniet. Pariatur qui minus laudantium hic."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quibusdam ut."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'reiciendis-repellendus-42' LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'autem-impedit-43' LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 76], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["description", "Praesentium ut culpa aut sunt quam adipisci. Laudantium dolorem animi laborum aut. Id doloremque numquam omnis ut atque aliquid accusamus. Qui natus porro cupiditate."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Animi non dolor veritatis placeat quasi."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'est-voluptates-44' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 77], ["blog_id", 1], ["body", "Adipisci velit quidem sint consequuntur. Accusantium nisi nam consequatur quod quo voluptatem. Autem pariatur rerum doloremque. Et minus impedit delectus praesentium. Et consequatur nam neque itaque fuga."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Odit eius cumque voluptas ea."], ["published", true], ["slug", "est-voluptates-44"], ["title", "Placeat eligendi doloribus."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test46' OR lower(name) = 'rspec46' OR lower(name) = 'ruby46' OR lower(name) = '#rails46') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails46"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'in-in-45' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 78], ["blog_id", 1], ["body", "Beatae sunt veritatis libero sit praesentium sit est. Aut fuga quod ea veniam. Deserunt nesciunt ut numquam aut aut eveniet veniam. Sit mollitia eaque. Qui blanditiis sed."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Harum et eius enim perspiciatis qui."], ["published", true], ["slug", "in-in-45"], ["title", "Vel alias atque."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test47' OR lower(name) = 'rspec47' OR lower(name) = 'ruby47' OR lower(name) = '#rails47') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test47' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test47"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails47"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quidem-tempore-46' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 79], ["blog_id", 1], ["body", "Dolorum facere sunt in debitis. Ut voluptatibus minus quisquam sed. Esse officia sunt totam. Quis laboriosam eum maxime. Quo facilis ut maiores provident. Quod et et."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Debitis labore quia."], ["published", true], ["slug", "quidem-tempore-46"], ["title", "Occaecati error ut."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test48' OR lower(name) = 'rspec48' OR lower(name) = 'ruby48' OR lower(name) = '#rails48') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test48' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails48"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.2ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.3ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'adipisci-et-47' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 80], ["blog_id", 1], ["body", "Autem temporibus maxime voluptas nihil possimus. Ratione tenetur molestiae voluptatum provident. Vel iusto fugiat dolorem labore et sequi assumenda. Qui optio nesciunt. Cupiditate voluptatibus et eos a iste repellendus. Veritatis est rerum reiciendis cum incidunt ut."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Perferendis dolorum eum et."], ["published", false], ["slug", "adipisci-et-47"], ["title", "Occaecati sunt nihil esse qui."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test49' OR lower(name) = 'rspec49' OR lower(name) = 'ruby49' OR lower(name) = '#rails49') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test49' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails49"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aliquid-expedita-48' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 81], ["blog_id", 1], ["body", "Nesciunt et saepe qui tenetur exercitationem. Unde vel nihil explicabo tenetur. Suscipit et maxime voluptatum est sunt impedit velit. Eum qui omnis ea in id iusto. Perspiciatis quod cumque officia aut consequuntur. Dolorem reiciendis qui sequi ea dicta labore doloribus."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Nesciunt sit et."], ["published", false], ["slug", "aliquid-expedita-48"], ["title", "Quis voluptas eius."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test50' OR lower(name) = 'rspec50' OR lower(name) = 'ruby50' OR lower(name) = '#rails50') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test50' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails50"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'cupiditate-ipsa-49' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 82], ["blog_id", 1], ["body", "Rerum aut incidunt cumque quibusdam debitis et possimus. Magnam vitae sunt laborum molestiae quae placeat rerum. Ut esse quaerat quam et harum possimus. Ea sit voluptatem saepe nam voluptatem reprehenderit. Provident et eius vel voluptatem. Alias quia fugiat recusandae excepturi sunt ut."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Consequatur."], ["published", false], ["slug", "cupiditate-ipsa-49"], ["title", "Dolorem et ea minus aut voluptatibus."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test51' OR lower(name) = 'rspec51' OR lower(name) = 'ruby51' OR lower(name) = '#rails51') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails51"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f'  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 83], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["description", "Praesentium ut culpa aut sunt quam adipisci. Laudantium dolorem animi laborum aut. Id doloremque numquam omnis ut atque aliquid accusamus. Qui natus porro cupiditate."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Animi non dolor veritatis placeat quasi."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'est-voluptates-50' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 84], ["blog_id", 1], ["body", "Adipisci velit quidem sint consequuntur. Accusantium nisi nam consequatur quod quo voluptatem. Autem pariatur rerum doloremque. Et minus impedit delectus praesentium. Et consequatur nam neque itaque fuga."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Odit eius cumque voluptas ea."], ["published", true], ["slug", "est-voluptates-50"], ["title", "Placeat eligendi doloribus."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test52' OR lower(name) = 'rspec52' OR lower(name) = 'ruby52' OR lower(name) = '#rails52') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails52"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'in-in-51' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 85], ["blog_id", 1], ["body", "Beatae sunt veritatis libero sit praesentium sit est. Aut fuga quod ea veniam. Deserunt nesciunt ut numquam aut aut eveniet veniam. Sit mollitia eaque. Qui blanditiis sed."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Harum et eius enim perspiciatis qui."], ["published", true], ["slug", "in-in-51"], ["title", "Vel alias atque."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test53' OR lower(name) = 'rspec53' OR lower(name) = 'ruby53' OR lower(name) = '#rails53') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test53' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails53"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quidem-tempore-52' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 86], ["blog_id", 1], ["body", "Dolorum facere sunt in debitis. Ut voluptatibus minus quisquam sed. Esse officia sunt totam. Quis laboriosam eum maxime. Quo facilis ut maiores provident. Quod et et."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Debitis labore quia."], ["published", true], ["slug", "quidem-tempore-52"], ["title", "Occaecati error ut."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test54' OR lower(name) = 'rspec54' OR lower(name) = 'ruby54' OR lower(name) = '#rails54') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails54"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.2ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'adipisci-et-53' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 87], ["blog_id", 1], ["body", "Autem temporibus maxime voluptas nihil possimus. Ratione tenetur molestiae voluptatum provident. Vel iusto fugiat dolorem labore et sequi assumenda. Qui optio nesciunt. Cupiditate voluptatibus et eos a iste repellendus. Veritatis est rerum reiciendis cum incidunt ut."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Perferendis dolorum eum et."], ["published", true], ["slug", "adipisci-et-53"], ["title", "Occaecati sunt nihil esse qui."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test55' OR lower(name) = 'rspec55' OR lower(name) = 'ruby55' OR lower(name) = '#rails55') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails55"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aliquid-expedita-54' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 88], ["blog_id", 1], ["body", "Nesciunt et saepe qui tenetur exercitationem. Unde vel nihil explicabo tenetur. Suscipit et maxime voluptatum est sunt impedit velit. Eum qui omnis ea in id iusto. Perspiciatis quod cumque officia aut consequuntur. Dolorem reiciendis qui sequi ea dicta labore doloribus."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Nesciunt sit et."], ["published", true], ["slug", "aliquid-expedita-54"], ["title", "Quis voluptas eius."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test56' OR lower(name) = 'rspec56' OR lower(name) = 'ruby56' OR lower(name) = '#rails56') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails56"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'cupiditate-ipsa-55' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 89], ["blog_id", 1], ["body", "Rerum aut incidunt cumque quibusdam debitis et possimus. Magnam vitae sunt laborum molestiae quae placeat rerum. Ut esse quaerat quam et harum possimus. Ea sit voluptatem saepe nam voluptatem reprehenderit. Provident et eius vel voluptatem. Alias quia fugiat recusandae excepturi sunt ut."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Consequatur."], ["published", true], ["slug", "cupiditate-ipsa-55"], ["title", "Dolorem et ea minus aut voluptatibus."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test57' OR lower(name) = 'rspec57' OR lower(name) = 'ruby57' OR lower(name) = '#rails57') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails57"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'animi-voluptatem-56' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 90], ["blog_id", 1], ["body", "Assumenda et consequatur. Doloremque porro accusantium sit. Vero saepe maxime. Iste quae recusandae ducimus quis vero. Dolor sit commodi ducimus tenetur nobis."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Commodi."], ["published", true], ["slug", "animi-voluptatem-56"], ["title", "Non minus dolorem."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test58' OR lower(name) = 'rspec58' OR lower(name) = 'ruby58' OR lower(name) = '#rails58') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test58' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails58"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'illum-laboriosam-57' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 91], ["blog_id", 1], ["body", "Repellat sed voluptatem. In facere repellendus architecto sit. Corrupti fuga vel ipsa nobis non impedit. Et repudiandae aspernatur eaque numquam et harum. Consequatur earum ea excepturi molestiae similique inventore."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Totam fuga."], ["published", true], ["slug", "illum-laboriosam-57"], ["title", "Consequatur fugiat aut repellendus laboriosam enim non voluptatem."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test59' OR lower(name) = 'rspec59' OR lower(name) = 'ruby59' OR lower(name) = '#rails59') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails59"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'earum-ullam-58' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 92], ["blog_id", 1], ["body", "Voluptas consequatur ut et fugit ipsum. Magnam et assumenda. Quisquam at sit eveniet. Ex fugiat illum autem. Expedita laboriosam sit doloremque consequatur et est. Exercitationem voluptas et placeat voluptatem."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Voluptas ut quia est voluptas et."], ["published", true], ["slug", "earum-ullam-58"], ["title", "Quis nostrum vel dolorem quas alias."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test60' OR lower(name) = 'rspec60' OR lower(name) = 'ruby60' OR lower(name) = '#rails60') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails60"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'vero-amet-59' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 93], ["blog_id", 1], ["body", "Qui dicta explicabo at illo. Repudiandae modi et officia. Pariatur reprehenderit officia rerum voluptates aperiam occaecati sed. Non ut rerum id aperiam pariatur sed veniam. Deserunt voluptas aliquam. Nemo aut placeat nulla eos. Adipisci culpa libero non at numquam itaque expedita."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Et quia."], ["published", true], ["slug", "vero-amet-59"], ["title", "Est hic laudantium."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test61' OR lower(name) = 'rspec61' OR lower(name) = 'ruby61' OR lower(name) = '#rails61') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails61"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-porro-60' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 94], ["blog_id", 1], ["body", "Eum eveniet maiores blanditiis qui. Ut magni recusandae minus enim corrupti similique. Autem consequatur quod laborum cumque. Dolores excepturi sed consequatur. Ex similique quis voluptatibus."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Placeat asperiores dicta aperiam explicabo occaecati."], ["published", true], ["slug", "et-porro-60"], ["title", "Occaecati qui dolorem commodi eos tenetur possimus."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'placeat-explicabo-61' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 95], ["blog_id", 1], ["body", "Repellat ullam unde. Libero recusandae nesciunt itaque reiciendis. Est dolorem commodi. Laborum omnis pariatur est cumque quos alias blanditiis. Exercitationem aliquam voluptate modi quaerat."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Enim."], ["published", true], ["slug", "placeat-explicabo-61"], ["title", "Dolorem distinctio qui reprehenderit magni."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_d2e022d ON posts_taggings_d2e022d.taggable_id = almanac_posts.id AND posts_taggings_d2e022d.taggable_type = 'Almanac::Post' AND posts_taggings_d2e022d.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 96], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["description", "Optio omnis tempore odit est ullam. Hic molestias vel voluptatibus non officiis. Aut nihil aut non sed. Sunt dignissimos enim officia sed eum blanditiis labore."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Eius id placeat sapiente ut et."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quod-et-62' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 97], ["blog_id", 1], ["body", "Quia laboriosam veniam exercitationem temporibus ut perferendis. Nisi qui dignissimos optio maiores. Doloribus ut et esse laboriosam error sequi. Nisi iure dignissimos doloremque. Consectetur et sit ab veritatis odit dicta. Illum repudiandae quia quia ducimus facere illo."], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["excerpt", "Distinctio suscipit."], ["published", true], ["slug", "quod-et-62"], ["title", "Ipsum et blanditiis fuga soluta fugit."], ["updated_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test62' OR lower(name) = 'rspec62' OR lower(name) = 'ruby62' OR lower(name) = '#rails62') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test62"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec62"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails62"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:58 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eius-vel-63' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 98], ["blog_id", 1], ["body", "Quae dolor rerum expedita exercitationem officia et ipsam. Autem eum perspiciatis. Hic amet autem optio illo voluptatem nobis. Vel totam et. Ipsam est quis omnis autem et voluptatem harum. Ducimus quaerat autem ad voluptatem ut."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["excerpt", "Repudiandae delectus ipsum et et ut."], ["published", true], ["slug", "eius-vel-63"], ["title", "Culpa aperiam laboriosam."], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test63' OR lower(name) = 'rspec63' OR lower(name) = 'ruby63' OR lower(name) = '#rails63') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test63' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails63"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'vitae-ea-64' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 99], ["blog_id", 1], ["body", "Perferendis rerum cum. Sunt ea a. Laudantium molestias est error veritatis porro. Ut natus nemo incidunt beatae alias perspiciatis. Odit labore iure dolore aut."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["excerpt", "Sapiente et accusamus ducimus corporis nemo."], ["published", true], ["slug", "vitae-ea-64"], ["title", "Minima aspernatur placeat est animi ad."], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test64' OR lower(name) = 'rspec64' OR lower(name) = 'ruby64' OR lower(name) = '#rails64') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails64"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'praesentium-laudantium-65' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 100], ["blog_id", 1], ["body", "Rem mollitia delectus fugiat ad dolores vel quaerat. Qui maxime error. Velit aut facilis voluptas aliquam quae recusandae in. Similique laudantium voluptatem iste consectetur dicta quidem. Dolor eius odio."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["excerpt", "Et a deserunt."], ["published", true], ["slug", "praesentium-laudantium-65"], ["title", "Est possimus sequi."], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test65' OR lower(name) = 'rspec65' OR lower(name) = 'ruby65' OR lower(name) = '#rails65') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails65"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-qui-66' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 101], ["blog_id", 1], ["body", "Placeat non laborum eum repellat dolor nihil libero. Rerum alias ex minima commodi aut voluptates. Ipsam vero esse quia dolorem maiores culpa sunt. Ullam eum quae harum dolorem voluptate eos. Dicta laudantium itaque. Doloremque animi libero fuga velit molestiae unde."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["excerpt", "Consectetur qui sunt nemo."], ["published", true], ["slug", "aut-qui-66"], ["title", "Repellat sed aperiam natus."], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test66' OR lower(name) = 'rspec66' OR lower(name) = 'ruby66' OR lower(name) = '#rails66') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails66"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consectetur-nesciunt-67' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 102], ["blog_id", 1], ["body", "Veritatis porro qui quisquam. Occaecati pariatur ut tempore. Magnam et repellendus qui maiores id. Et dolor fugiat. Cumque maiores quod. Similique cum aut est quaerat."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["excerpt", "Reiciendis nihil iure magni modi."], ["published", true], ["slug", "consectetur-nesciunt-67"], ["title", "Sed sapiente dolorum ipsa non deleniti qui."], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test67' OR lower(name) = 'rspec67' OR lower(name) = 'ruby67' OR lower(name) = '#rails67') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails67"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ipsa-reiciendis-68' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 103], ["blog_id", 1], ["body", "Odio dolorem dicta natus animi. Ut quod sit aut id accusantium. Praesentium et facilis animi a modi quos enim. Ipsam dolor voluptatum assumenda eos. Eius voluptatibus tempore voluptate amet voluptates."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["excerpt", "Occaecati et magni sed molestias."], ["published", true], ["slug", "ipsa-reiciendis-68"], ["title", "Illo in nesciunt."], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test68' OR lower(name) = 'rspec68' OR lower(name) = 'ruby68' OR lower(name) = '#rails68') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails68"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'beatae-sit-69' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 104], ["blog_id", 1], ["body", "Voluptate saepe fugit consequuntur quos eius quis ut. Dignissimos omnis repudiandae magni dolor voluptatem repellat qui. Ad provident voluptas. Porro non dolores. Totam laudantium qui hic."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["excerpt", "Voluptas ut aut possimus pariatur fugit."], ["published", true], ["slug", "beatae-sit-69"], ["title", "Assumenda qui saepe vel nostrum nobis iusto asperiores."], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test69' OR lower(name) = 'rspec69' OR lower(name) = 'ruby69' OR lower(name) = '#rails69') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails69"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nisi-fugit-70' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 105], ["blog_id", 1], ["body", "Earum reprehenderit quisquam quaerat et. Error perspiciatis omnis quisquam corrupti. Qui voluptate aut neque. Ipsum id eligendi nihil. Vero quis ea."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["excerpt", "Culpa."], ["published", true], ["slug", "nisi-fugit-70"], ["title", "Fuga reiciendis quae."], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test70' OR lower(name) = 'rspec70' OR lower(name) = 'ruby70' OR lower(name) = '#rails70') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails70"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'placeat-ut-71' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 106], ["blog_id", 1], ["body", "Quia quas ipsam magni velit. Cumque error ut nostrum ipsa quibusdam. Ea sapiente temporibus ex. Quod est veniam vitae nulla officia adipisci iure. Assumenda voluptatem sed. Quis placeat vitae. Consequatur ut explicabo eligendi dolorem eos."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["excerpt", "Suscipit exercitationem repellat."], ["published", true], ["slug", "placeat-ut-71"], ["title", "Id omnis quaerat dolore blanditiis."], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test71' OR lower(name) = 'rspec71' OR lower(name) = 'ruby71' OR lower(name) = '#rails71') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails71"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quae-et-72' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 107], ["blog_id", 1], ["body", "Eius et laudantium voluptatibus sapiente sunt. Necessitatibus earum voluptatibus. Tempore molestias quo assumenda. Eligendi fugit tenetur voluptatem ut accusamus. Dolores est ullam dolores ut."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["excerpt", "Quia vel veniam."], ["published", false], ["slug", "quae-et-72"], ["title", "Illo quis et."], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test72' OR lower(name) = 'rspec72' OR lower(name) = 'ruby72' OR lower(name) = '#rails72') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails72"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 1], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 42 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 42], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 43 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 43], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 44 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 44], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 45 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 45], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'facilis-exercitationem-73' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 108], ["blog_id", 1], ["body", "Dignissimos voluptatibus sed rerum. Nemo et ut sunt aut ratione. Nostrum quis alias consequatur ipsa. Pariatur laborum eius. Illo dolor voluptas aut at illum corrupti."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["excerpt", "Quis reiciendis."], ["published", false], ["slug", "facilis-exercitationem-73"], ["title", "Laboriosam sed dolor hic."], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test73' OR lower(name) = 'rspec73' OR lower(name) = 'ruby73' OR lower(name) = '#rails73') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails73"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 1], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 46 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 46], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 47 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 47], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 48 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 48], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 49 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 49], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.2ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_4cc6312 ON posts_taggings_4cc6312.taggable_id = almanac_posts.id AND posts_taggings_4cc6312.taggable_type = 'Almanac::Post' AND posts_taggings_4cc6312.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 109], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["description", "Praesentium ut culpa aut sunt quam adipisci. Laudantium dolorem animi laborum aut. Id doloremque numquam omnis ut atque aliquid accusamus. Qui natus porro cupiditate."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Animi non dolor veritatis placeat quasi."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'est-voluptates-74' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 110], ["blog_id", 1], ["body", "Adipisci velit quidem sint consequuntur. Accusantium nisi nam consequatur quod quo voluptatem. Autem pariatur rerum doloremque. Et minus impedit delectus praesentium. Et consequatur nam neque itaque fuga."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["excerpt", "Odit eius cumque voluptas ea."], ["published", true], ["slug", "est-voluptates-74"], ["title", "Placeat eligendi doloribus."], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test74' OR lower(name) = 'rspec74' OR lower(name) = 'ruby74' OR lower(name) = '#rails74') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails74"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'in-in-75' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 111], ["blog_id", 1], ["body", "Beatae sunt veritatis libero sit praesentium sit est. Aut fuga quod ea veniam. Deserunt nesciunt ut numquam aut aut eveniet veniam. Sit mollitia eaque. Qui blanditiis sed."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["excerpt", "Harum et eius enim perspiciatis qui."], ["published", true], ["slug", "in-in-75"], ["title", "Vel alias atque."], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test75' OR lower(name) = 'rspec75' OR lower(name) = 'ruby75' OR lower(name) = '#rails75') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test75' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails75"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quidem-tempore-76' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 112], ["blog_id", 1], ["body", "Dolorum facere sunt in debitis. Ut voluptatibus minus quisquam sed. Esse officia sunt totam. Quis laboriosam eum maxime. Quo facilis ut maiores provident. Quod et et."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["excerpt", "Debitis labore quia."], ["published", true], ["slug", "quidem-tempore-76"], ["title", "Occaecati error ut."], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test76' OR lower(name) = 'rspec76' OR lower(name) = 'ruby76' OR lower(name) = '#rails76') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails76"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'adipisci-et-77' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 113], ["blog_id", 1], ["body", "Autem temporibus maxime voluptas nihil possimus. Ratione tenetur molestiae voluptatum provident. Vel iusto fugiat dolorem labore et sequi assumenda. Qui optio nesciunt. Cupiditate voluptatibus et eos a iste repellendus. Veritatis est rerum reiciendis cum incidunt ut."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["excerpt", "Perferendis dolorum eum et."], ["published", true], ["slug", "adipisci-et-77"], ["title", "Occaecati sunt nihil esse qui."], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test77' OR lower(name) = 'rspec77' OR lower(name) = 'ruby77' OR lower(name) = '#rails77') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test77"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec77"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby77"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails77"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aliquid-expedita-78' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 114], ["blog_id", 1], ["body", "Nesciunt et saepe qui tenetur exercitationem. Unde vel nihil explicabo tenetur. Suscipit et maxime voluptatum est sunt impedit velit. Eum qui omnis ea in id iusto. Perspiciatis quod cumque officia aut consequuntur. Dolorem reiciendis qui sequi ea dicta labore doloribus."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["excerpt", "Nesciunt sit et."], ["published", false], ["slug", "aliquid-expedita-78"], ["title", "Quis voluptas eius."], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test78' OR lower(name) = 'rspec78' OR lower(name) = 'ruby78' OR lower(name) = '#rails78') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test78"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec78"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby78"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails78"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'cupiditate-ipsa-79' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 115], ["blog_id", 1], ["body", "Rerum aut incidunt cumque quibusdam debitis et possimus. Magnam vitae sunt laborum molestiae quae placeat rerum. Ut esse quaerat quam et harum possimus. Ea sit voluptatem saepe nam voluptatem reprehenderit. Provident et eius vel voluptatem. Alias quia fugiat recusandae excepturi sunt ut."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["excerpt", "Consequatur."], ["published", false], ["slug", "cupiditate-ipsa-79"], ["title", "Dolorem et ea minus aut voluptatibus."], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test79' OR lower(name) = 'rspec79' OR lower(name) = 'ruby79' OR lower(name) = '#rails79') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails79"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'animi-voluptatem-80' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 116], ["blog_id", 1], ["body", "Assumenda et consequatur. Doloremque porro accusantium sit. Vero saepe maxime. Iste quae recusandae ducimus quis vero. Dolor sit commodi ducimus tenetur nobis."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["excerpt", "Commodi."], ["published", false], ["slug", "animi-voluptatem-80"], ["title", "Non minus dolorem."], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test80' OR lower(name) = 'rspec80' OR lower(name) = 'ruby80' OR lower(name) = '#rails80') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test80"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec80"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby80"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails80"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 't'  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'eileen@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "eileen@example.com"], ["encrypted_password", "$2a$04$V3duCQmNBWoItP62WZ3vz.TIEYwvth3TvgIOo9kS0EinDfU9nQlPW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs" Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Consequatur est rerum culpa necessitatibus.", "description"=>"Ratione ex corporis omnis accusantium. Vero mollitia iusto deleniti facilis aut ut. Eos harum soluta maxime.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["description", "Ratione ex corporis omnis accusantium. Vero mollitia iusto deleniti facilis aut ut. Eos harum soluta maxime."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Consequatur est rerum culpa necessitatibus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 8ms (ActiveRecord: 0.9ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'karson_dare@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "karson_dare@example.com"], ["encrypted_password", "$2a$04$5Az6PFe34kgsj/d9SVwh/e3QGueruB298CR9LoSfzfEgC7QKHrGNG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Vero mollitia fugiat.", "description"=>"Qui ex aut nisi. Ut maxime aut unde. Quidem at rerum necessitatibus ullam deleniti dolorum.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["description", "Qui ex aut nisi. Ut maxime aut unde. Quidem at rerum necessitatibus ullam deleniti dolorum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Vero mollitia fugiat."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 7ms (ActiveRecord: 0.9ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'eileen@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "eileen@example.com"], ["encrypted_password", "$2a$04$G.A8i7A84t.ezg5AeeXEAOY.m1X3x2me0sLNtnq.HmhxuD0pJPl02"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs" Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Fugit dolores a officiis adipisci. Ratione ex corporis omnis accusantium. Vero mollitia iusto deleniti facilis aut ut. Eos harum soluta maxime. Delectus est velit rerum eligendi eius aut fuga.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 10ms (Views: 3.2ms | ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'gaylord@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "gaylord@example.com"], ["encrypted_password", "$2a$04$KXaJfNYGhXaseRa4vZqxJ.5QplW.L4urnQSQ.JZYF/hhBmVI72mbC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Aut totam voluptatem vel non. Minima rerum quia. Qui nesciunt laborum voluptate quia exercitationem ex. At reiciendis modi ut possimus eos aut.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 8ms (Views: 1.6ms | ActiveRecord: 0.3ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'eileen@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "eileen@example.com"], ["encrypted_password", "$2a$04$g7k5kObNjwH4TV1wFHIQNOn188mDVtVZWP6GXQh5.uFM0MsNBmX7a"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 117], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["description", "Ratione ex corporis omnis accusantium. Vero mollitia iusto deleniti facilis aut ut. Eos harum soluta maxime."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Consequatur est rerum culpa necessitatibus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Testz", "description"=>"Modi necessitatibus nulla. Et et cum. Reprehenderit dolores ducimus rem quidem eos voluptatem. Dolor pariatur aliquam ut aliquid.", "author_id"=>"118"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Testz', "description" = 'Modi necessitatibus nulla. Et et cum. Reprehenderit dolores ducimus rem quidem eos voluptatem. Dolor pariatur aliquam ut aliquid.', "author_id" = 118, "updated_at" = '2012-12-28 04:50:59.598910' WHERE "almanac_blogs"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 7ms (ActiveRecord: 0.4ms) Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'marianne.bergnaum@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "marianne.bergnaum@example.org"], ["encrypted_password", "$2a$04$sbhui4Y2rZFIGi6kz6Nko.anI1B/PFMZqzO91Jc/cT9aeiyNc0nm."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 119], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["description", "Dicta hic corporis eveniet quis. Necessitatibus quaerat ut ipsam voluptatem dignissimos. Repellendus nisi cum voluptatem. Quia doloribus magni natus quisquam iusto et."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Voluptatem est sed ea dolor odio aperiam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Praesentium sunt iusto earum et excepturi.", "description"=>"Autem labore reiciendis tempora. Id eaque laborum voluptates et perferendis. Est et neque et beatae voluptates enim impedit.", "author_id"=>"120"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Praesentium sunt iusto earum et excepturi.', "description" = 'Autem labore reiciendis tempora. Id eaque laborum voluptates et perferendis. Est et neque et beatae voluptates enim impedit.', "author_id" = 120, "updated_at" = '2012-12-28 04:50:59.617428' WHERE "almanac_blogs"."id" = 1  (40.3ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 46ms (ActiveRecord: 40.6ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'eileen@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "eileen@example.com"], ["encrypted_password", "$2a$04$y3UZxfPSr8ZdtXFblSKsd.qMiq4/efmmCHoXThvXM3MX1YfGBbcN."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 121], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["description", "Ratione ex corporis omnis accusantium. Vero mollitia iusto deleniti facilis aut ut. Eos harum soluta maxime."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Consequatur est rerum culpa necessitatibus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Modi necessitatibus nulla. Et et cum. Reprehenderit dolores ducimus rem quidem eos voluptatem. Dolor pariatur aliquam ut aliquid.", "author_id"=>"122"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 2.0ms | ActiveRecord: 0.2ms) Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'marianne.bergnaum@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "marianne.bergnaum@example.org"], ["encrypted_password", "$2a$04$.XCqwLOT.f.V5Ugxmh9rm.qbF27Nf1opSvmb5yBuVjDcp4HqNQnmi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 123], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["description", "Dicta hic corporis eveniet quis. Necessitatibus quaerat ut ipsam voluptatem dignissimos. Repellendus nisi cum voluptatem. Quia doloribus magni natus quisquam iusto et."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Voluptatem est sed ea dolor odio aperiam."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Aut officia consectetur. Autem labore reiciendis tempora. Id eaque laborum voluptates et perferendis.", "author_id"=>"124"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 126], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["description", "Repudiandae voluptate provident eveniet ipsam omnis. Sed molestias sint voluptatum numquam. Porro id laboriosam dolorem. Sed cumque iusto."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et praesentium qui sequi."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 128], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["description", "Ipsa ab sit. Provident asperiores assumenda. Tempore unde accusamus. Ratione eum molestiae harum. Sint amet nemo earum magnam ut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Qui omnis est id et sunt officia."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'eileen@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "eileen@example.com"], ["encrypted_password", "$2a$04$aNvnTDECsfJEHCPtv/pqdOsHxrVqxVUigOrNnfs45Co6ZsnxrBwbe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 130], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["description", "Dolor rerum distinctio corporis quaerat. Iste ut doloremque. Incidunt eos saepe nihil distinctio illo consequuntur."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sed aspernatur exercitationem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quae-saepe-81' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 129], ["blog_id", 1], ["body", "Dicta consequatur omnis quam cumque est aut. Quaerat provident dolor repudiandae omnis. Distinctio sed et exercitationem illum. Ut officiis sit. Voluptatum nulla labore suscipit. Qui deleniti ut. Facere vitae non aliquam."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["excerpt", "Quo sed vero ipsam."], ["published", true], ["slug", "quae-saepe-81"], ["title", "Consequatur est rerum culpa necessitatibus voluptatem."], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test81' OR lower(name) = 'rspec81' OR lower(name) = 'ruby81' OR lower(name) = '#rails81') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test81"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec81"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby81"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails81"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "lyric.dach@example.com"], ["author_name", "Mrs. Desmond Pouros"], ["body", "Minima sed quibusdam. Esse dolor vel."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_comments"  Processing by Almanac::CommentsController#destroy as HTML Parameters: {"id"=>"1", "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "almanac_comments" WHERE "almanac_comments"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/1 Completed 302 Found in 7ms (ActiveRecord: 0.4ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"   (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'talon@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "talon@example.net"], ["encrypted_password", "$2a$04$w8rQbOMJOPf9z5IeJ6yRdubSVrtiwpzDteY5a9YEfCiTP92hWXW0."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 132], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["description", "Dolore fugit delectus voluptatem officia. Aut aliquam qui voluptatem tempore consequuntur. Distinctio iste fuga eum excepturi sit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Recusandae ipsam aut."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'doloribus-molestiae-82' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 131], ["blog_id", 1], ["body", "Animi occaecati neque expedita et modi. Consequatur animi autem eos et sunt qui doloremque. Praesentium deleniti id eaque asperiores. Soluta porro doloribus sequi. Recusandae quia nulla ut. Deleniti reiciendis a eaque."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["excerpt", "Officia ad ut et."], ["published", true], ["slug", "doloribus-molestiae-82"], ["title", "Consequatur tempora voluptas aut."], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test82' OR lower(name) = 'rspec82' OR lower(name) = 'ruby82' OR lower(name) = '#rails82') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test82"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec82"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby82"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails82"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "veronica.wisozk@example.org"], ["author_name", "Mr. Luella Rempel"], ["body", "Omnis dignissimos ut beatae et. Cum quod debitis sunt. Sed fuga aut."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#destroy as HTML Parameters: {"id"=>"1", "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) DELETE FROM "almanac_comments" WHERE "almanac_comments"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/1 Completed 302 Found in 6ms (ActiveRecord: 0.3ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'eileen@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "eileen@example.com"], ["encrypted_password", "$2a$04$L8lPZgZegYDVjJTR75FQt.wuPRKxinceS3nHr1G0B0EQ0Td1ckfaC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 134], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["description", "Dolor rerum distinctio corporis quaerat. Iste ut doloremque. Incidunt eos saepe nihil distinctio illo consequuntur."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sed aspernatur exercitationem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quae-saepe-83' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 133], ["blog_id", 1], ["body", "Dicta consequatur omnis quam cumque est aut. Quaerat provident dolor repudiandae omnis. Distinctio sed et exercitationem illum. Ut officiis sit. Voluptatum nulla labore suscipit. Qui deleniti ut. Facere vitae non aliquam."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["excerpt", "Quo sed vero ipsam."], ["published", true], ["slug", "quae-saepe-83"], ["title", "Consequatur est rerum culpa necessitatibus voluptatem."], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test83' OR lower(name) = 'rspec83' OR lower(name) = 'ruby83' OR lower(name) = '#rails83') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test83"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec83"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby83"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails83"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolorum-iste-84' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 135], ["blog_id", 1], ["body", "Dolorem dolores eum officia. Doloremque aliquam voluptatem facilis ex. Laborum aut asperiores. Ut ut consequatur esse. Nisi harum fugiat dolor a aut. Distinctio odit alias. Magni iusto ullam aut soluta dolorem."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["excerpt", "Et qui velit."], ["published", true], ["slug", "dolorum-iste-84"], ["title", "Reiciendis fugiat mollitia doloribus a."], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test84' OR lower(name) = 'rspec84' OR lower(name) = 'ruby84' OR lower(name) = '#rails84') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test84' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec84' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails84"]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "tomas.quigley@example.com"], ["author_name", "Mr. Armand Marks"], ["body", "Facere iure sit ratione possimus dicta eos. Pariatur eaque est quas et molestiae. Repellat sed libero eum ea molestiae."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "bernard@example.com"], ["author_name", "Brisa Champlin"], ["body", "Eos quo sapiente praesentium fuga aut dolores aliquid. Quidem perspiciatis aperiam placeat distinctio. Id sapiente explicabo ut."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "george@example.org"], ["author_name", "Daniela Haley Sr."], ["body", "Reprehenderit sequi sed. Aliquid accusamus saepe dicta porro."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "helen.bernhard@example.org"], ["author_name", "Mr. Oswaldo Zemlak"], ["body", "Veniam sunt unde dolorem. Quia doloribus qui similique ut harum molestiae."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "dejon_nikolaus@example.com"], ["author_name", "Dr. Cornelius Kuhlman"], ["body", "Laboriosam optio quam accusamus sed voluptas aut."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "haylie@example.com"], ["author_name", "Mr. Kaela Daugherty"], ["body", "Omnis eius et. Excepturi sed corrupti optio. Quibusdam quod eaque mollitia ipsam consectetur ex ab."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "doyle@example.com"], ["author_name", "Hildegard Carroll I"], ["body", "Voluptatem cupiditate accusantium. Tempora nulla dolores adipisci."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "aisha_schultz@example.com"], ["author_name", "Dr. Russ Harvey"], ["body", "Officia et ut cum. Ab id impedit accusantium nobis eos natus velit."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "vernice@example.com"], ["author_name", "Leilani Kerluke"], ["body", "Nulla aut nihil eos alias quibusdam debitis. Et at dolorem."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "amaya.franecki@example.net"], ["author_name", "Jamarcus Rogahn"], ["body", "Laboriosam deleniti doloribus quia velit beatae voluptatibus amet. Maxime harum eligendi et voluptas error repellat sed. Quia aut explicabo eveniet temporibus."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 2 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "matteo@example.net"], ["author_name", "Marie Ryan"], ["body", "Reprehenderit earum dolores quibusdam. Possimus doloremque fugit in. Voluptatem earum eum in nulla autem cum optio."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["post_id", 2], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 2 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "sheldon_zemlak@example.net"], ["author_name", "Josefa Fay Sr."], ["body", "Ab enim repellendus magnam soluta ipsa. Occaecati error iure quaerat eveniet. Aut voluptates quae iste sit."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["post_id", 2], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 2 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "wayne_casper@example.org"], ["author_name", "Nickolas Stamm PhD"], ["body", "Quos consequatur assumenda."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["post_id", 2], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 2 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "seamus.jaskolski@example.net"], ["author_name", "Lauryn Ratke"], ["body", "Rerum perferendis cum non velit incidunt optio. Aut voluptatem voluptas quos odio voluptates."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["post_id", 2], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 2 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "amani_flatley@example.org"], ["author_name", "Giuseppe Hayes"], ["body", "Id quia dignissimos assumenda repellendus modi esse. Minus atque eligendi provident reprehenderit consequatur voluptatibus. Explicabo officia quos corporis nesciunt velit quo."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["post_id", 2], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ricky.wyman@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ricky.wyman@example.net"], ["encrypted_password", "$2a$04$nn4lykPgGeSgea.rm/0TjOH7J5dE0nr72bZbkbmcgZVBTDysFHunu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 137], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["description", "Qui quis dolorum. Enim accusantium vel reiciendis voluptates occaecati perferendis et. Qui animi voluptas ut voluptates iste sit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Rerum nisi voluptatem fuga delectus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'officia-ut-85' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 136], ["blog_id", 1], ["body", "Quo qui sint tempora voluptas. Eum qui laborum ea omnis. Officia molestiae voluptas dolorem sunt fugiat ab nisi. Nobis sed accusamus nihil sit consequatur. Blanditiis iusto amet quasi doloremque quo ea."], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["excerpt", "Cum dolor laboriosam omnis."], ["published", true], ["slug", "officia-ut-85"], ["title", "Et et sed molestiae est."], ["updated_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test85' OR lower(name) = 'rspec85' OR lower(name) = 'ruby85' OR lower(name) = '#rails85') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec85' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails85' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails85"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:50:59 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'accusantium-et-86' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 138], ["blog_id", 1], ["body", "Debitis ea eligendi nesciunt laudantium. Impedit asperiores vitae repellat dolorem possimus dolor aliquid. Perferendis natus quis at et voluptatem illo. Quia et necessitatibus amet saepe aut eligendi. Eaque est consequatur."], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["excerpt", "Consequatur eveniet deleniti."], ["published", true], ["slug", "accusantium-et-86"], ["title", "Repellat tempora ut facere minus corporis debitis."], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test86' OR lower(name) = 'rspec86' OR lower(name) = 'ruby86' OR lower(name) = '#rails86') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test86' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test86"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec86"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby86"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails86"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "autumn_volkman@example.org"], ["author_name", "Emerson Cartwright"], ["body", "Occaecati officia quia repellat deleniti rerum ut. Non in laudantium."], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "ollie@example.com"], ["author_name", "Miss Kennedi Armstrong"], ["body", "Et perspiciatis officiis provident dolores corporis."], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "shawna@example.org"], ["author_name", "Hilario Flatley IV"], ["body", "Eligendi nesciunt recusandae. Enim reiciendis nostrum assumenda velit et non quod."], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "loraine@example.org"], ["author_name", "Mr. Zora Kihn"], ["body", "Et quos blanditiis."], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "green@example.org"], ["author_name", "Dr. Isabell Bergnaum"], ["body", "Voluptate numquam maxime distinctio alias. Similique fugit fugiat sit saepe. Quos odio amet omnis cumque placeat aliquam blanditiis."], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "elya@example.org"], ["author_name", "Laurence Armstrong"], ["body", "Eos consequatur distinctio qui et. Explicabo iure cum id quasi odio quis eius."], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "twila_abshire@example.com"], ["author_name", "Nichole VonRueden"], ["body", "Aut consequatur neque sit commodi ut. Est et ex est at nobis. Et qui ratione."], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "conrad@example.org"], ["author_name", "Miss Larissa Jaskolski"], ["body", "Sunt velit nemo optio et itaque ipsam."], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "skyla.johnston@example.net"], ["author_name", "Mrs. Murray Kuhlman"], ["body", "Est excepturi consequatur. Non similique et quos quis molestiae voluptatibus. Aliquam fugit beatae doloribus quod eos consectetur iusto."], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "mia@example.net"], ["author_name", "Cecilia Ritchie"], ["body", "Et unde asperiores voluptatem non facere qui. Laboriosam accusantium nemo iste quam voluptatem voluptas. Maiores provident architecto."], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 2 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "reagan@example.net"], ["author_name", "Mrs. Jonathon Johnson"], ["body", "Consequatur doloremque in. Sint cumque dolorem doloremque."], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["post_id", 2], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 2 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "jesus.ritchie@example.com"], ["author_name", "Fernando Welch"], ["body", "Magni dolorum explicabo nihil nemo non nulla. Voluptas eos quae aut dolorum voluptas."], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["post_id", 2], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 2 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "jacey.cummings@example.com"], ["author_name", "Leone Feeney"], ["body", "Sed nobis autem qui animi. Nam consequuntur praesentium molestiae."], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["post_id", 2], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 2 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "carley.satterfield@example.org"], ["author_name", "Monserrat Gutmann"], ["body", "Dolores provident ut et quis. Omnis natus et dolor sed adipisci eos possimus. Nulla voluptatum repellendus delectus laborum aperiam dolorem."], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["post_id", 2], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 2 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "jacky_watsica@example.com"], ["author_name", "America Kuhic"], ["body", "Reprehenderit dicta sed. Earum perspiciatis itaque labore voluptas. Qui et rerum qui sit."], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["post_id", 2], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'eileen@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "eileen@example.com"], ["encrypted_password", "$2a$04$5LOCcfasFuxemXzmE2Qt4eA5dHOp47ZYD.fF5Udo/GgfzP9sbvJue"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 140], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["description", "Dolor rerum distinctio corporis quaerat. Iste ut doloremque. Incidunt eos saepe nihil distinctio illo consequuntur."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sed aspernatur exercitationem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quae-saepe-87' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 139], ["blog_id", 1], ["body", "Dicta consequatur omnis quam cumque est aut. Quaerat provident dolor repudiandae omnis. Distinctio sed et exercitationem illum. Ut officiis sit. Voluptatum nulla labore suscipit. Qui deleniti ut. Facere vitae non aliquam."], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["excerpt", "Quo sed vero ipsam."], ["published", true], ["slug", "quae-saepe-87"], ["title", "Consequatur est rerum culpa necessitatibus voluptatem."], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test87' OR lower(name) = 'rspec87' OR lower(name) = 'ruby87' OR lower(name) = '#rails87') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails87"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Mrs. Desmond Pouros", "author_email"=>"lyric.dach@example.com", "body"=>"Minima sed quibusdam. Esse dolor vel."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "lyric.dach@example.com"], ["author_name", "Mrs. Desmond Pouros"], ["body", "Minima sed quibusdam. Esse dolor vel."], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/quae-saepe-87 Completed 302 Found in 8ms (ActiveRecord: 0.5ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"   (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'talon@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "talon@example.net"], ["encrypted_password", "$2a$04$j80d0ppzakNXicumny/4WecKY7fxIZfzMzk7qpooTRoXVGhXrGWiC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 142], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["description", "Dolore fugit delectus voluptatem officia. Aut aliquam qui voluptatem tempore consequuntur. Distinctio iste fuga eum excepturi sit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Recusandae ipsam aut."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'doloribus-molestiae-88' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 141], ["blog_id", 1], ["body", "Animi occaecati neque expedita et modi. Consequatur animi autem eos et sunt qui doloremque. Praesentium deleniti id eaque asperiores. Soluta porro doloribus sequi. Recusandae quia nulla ut. Deleniti reiciendis a eaque."], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["excerpt", "Officia ad ut et."], ["published", true], ["slug", "doloribus-molestiae-88"], ["title", "Consequatur tempora voluptas aut."], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test88' OR lower(name) = 'rspec88' OR lower(name) = 'ruby88' OR lower(name) = '#rails88') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails88"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Mr. Luella Rempel", "author_email"=>"veronica.wisozk@example.org", "body"=>"Omnis dignissimos ut beatae et. Cum quod debitis sunt. Sed fuga aut."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "veronica.wisozk@example.org"], ["author_name", "Mr. Luella Rempel"], ["body", "Omnis dignissimos ut beatae et. Cum quod debitis sunt. Sed fuga aut."], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/doloribus-molestiae-88 Completed 302 Found in 7ms (ActiveRecord: 0.4ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'eileen@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "eileen@example.com"], ["encrypted_password", "$2a$04$uhRmftNR7.0ILZsHz/BTZ.T5QpsqFzfQWDkmLmWJnSxpgvuoGgqAC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 144], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["description", "Dolor rerum distinctio corporis quaerat. Iste ut doloremque. Incidunt eos saepe nihil distinctio illo consequuntur."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sed aspernatur exercitationem."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quae-saepe-89' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 143], ["blog_id", 1], ["body", "Dicta consequatur omnis quam cumque est aut. Quaerat provident dolor repudiandae omnis. Distinctio sed et exercitationem illum. Ut officiis sit. Voluptatum nulla labore suscipit. Qui deleniti ut. Facere vitae non aliquam."], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["excerpt", "Quo sed vero ipsam."], ["published", true], ["slug", "quae-saepe-89"], ["title", "Consequatur est rerum culpa necessitatibus voluptatem."], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test89' OR lower(name) = 'rspec89' OR lower(name) = 'ruby89' OR lower(name) = '#rails89') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test89' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test89"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec89' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec89"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby89' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby89"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails89' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails89"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Mrs. Desmond Pouros", "author_email"=>"lyric.dach@example.com", "body"=>nil}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Redirected to http://test.host/almanac/quae-saepe-89 Completed 302 Found in 8ms (ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mabel_friesen@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "mabel_friesen@example.net"], ["encrypted_password", "$2a$04$/4IuOpunOUlCmLj9TrB2POlib86Zen/KtZUwWzodq3TyCd5nguH4K"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 146], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["description", "Tempora eos amet sequi quos quaerat. Omnis sequi eveniet occaecati laudantium adipisci. Est commodi laboriosam expedita neque animi. Veritatis quisquam et facere mollitia quos debitis harum. Dolores illo magni et."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Delectus iste placeat non nesciunt repellat omnis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ut-id-90' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 145], ["blog_id", 1], ["body", "Sint quidem eligendi voluptatibus. Sed magni ipsam ex. Quo modi quos non consequatur consequuntur minima. Molestiae nihil ea vel. Dicta eum iure."], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["excerpt", "Autem corrupti."], ["published", true], ["slug", "ut-id-90"], ["title", "Recusandae aut qui adipisci dicta omnis qui natus."], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test90' OR lower(name) = 'rspec90' OR lower(name) = 'ruby90' OR lower(name) = '#rails90') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test90' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test90"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec90' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec90"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby90' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby90"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails90' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails90"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Kasandra Roob I", "author_email"=>"einar.maggio@example.com", "body"=>"Est rerum et reiciendis eos minus et et."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "einar.maggio@example.com"], ["author_name", "Kasandra Roob I"], ["body", "Est rerum et reiciendis eos minus et et."], ["created_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ut-id-90 Completed 302 Found in 7ms (ActiveRecord: 0.5ms)  (0.7ms) rollback transaction Connecting to database specified by database.yml  (1.3ms) DELETE FROM "users";  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';  (0.9ms) DELETE FROM "almanac_posts";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_posts';  (1.0ms) DELETE FROM "almanac_images";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_images';  (1.0ms) DELETE FROM "tags";  (0.1ms) DELETE FROM sqlite_sequence where name = 'tags';  (0.7ms) DELETE FROM "taggings";  (0.1ms) DELETE FROM sqlite_sequence where name = 'taggings';  (1.0ms) DELETE FROM "almanac_comments";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_comments';  (1.0ms) DELETE FROM "almanac_blogs";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_blogs';  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (1.7ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (5.8ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 2], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["description", "Et modi doloremque officiis. Veniam sint perspiciatis ex nihil sit vero aut. Est est impedit quas minima et beatae aliquid."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aut est."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'architecto-voluptatibus-1' LIMIT 1 SQL (0.7ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Minus beatae voluptatum. Consectetur soluta voluptatum neque itaque totam fugit sunt. Quisquam facere incidunt ipsa. Magnam vitae iure unde distinctio. Repellat consequatur qui nam asperiores. Voluptas velit et quisquam cumque. Iste aut magni."], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["excerpt", "Ad ut eligendi."], ["published", true], ["slug", "architecto-voluptatibus-1"], ["title", "Cum repellat voluptatum."], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test1' OR lower(name) = 'rspec1' OR lower(name) = 'ruby1' OR lower(name) = '#rails1') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test1"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec1"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby1"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails1"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 4], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["description", "Voluptatem pariatur quaerat. Doloremque aspernatur in dicta eos illo itaque. Odit eum culpa qui consequatur ex aut est. Aut ut sapiente saepe reprehenderit expedita a provident."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Laboriosam rerum."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eveniet-recusandae-2' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 3], ["blog_id", 1], ["body", "Ut veniam sint doloremque sed cupiditate. Illo et voluptatibus et accusamus sit. Porro repudiandae excepturi omnis similique cupiditate. Labore similique nisi occaecati assumenda molestiae debitis. Et exercitationem cumque corrupti ut id cupiditate."], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["excerpt", "Veniam hic."], ["published", true], ["slug", "eveniet-recusandae-2"], ["title", "Dicta excepturi aliquid architecto adipisci molestiae."], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test2' OR lower(name) = 'rspec2' OR lower(name) = 'ruby2' OR lower(name) = '#rails2') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test2"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec2"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby2"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails2"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "floy_torp@example.com"], ["author_name", "Florencio Schowalter"], ["body", "Et sit ut non veritatis placeat a officia. Sit exercitationem consequuntur reprehenderit quia optio ut doloremque. Dolore vitae quia."], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" ORDER BY id ASC  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 6], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["description", "Rerum aut dolorem. Dolor voluptatem dolorum voluptatem qui sunt nemo rem. Accusamus debitis molestiae voluptas."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Non tempore provident."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-ut-3' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 5], ["blog_id", 1], ["body", "Placeat est rem et. Corporis omnis ea aut quia nostrum vel impedit. Et magnam et esse unde voluptatibus. Praesentium voluptatem excepturi aut nesciunt. Repellat sint saepe possimus dignissimos. Et placeat repellat eaque molestiae qui. Qui nostrum sapiente."], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["excerpt", "Eum sequi eaque molestiae asperiores."], ["published", true], ["slug", "et-ut-3"], ["title", "Consectetur voluptatem laudantium."], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test3' OR lower(name) = 'rspec3' OR lower(name) = 'ruby3' OR lower(name) = '#rails3') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails3"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 8], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["description", "Accusamus amet porro voluptas sed suscipit et ipsam. Ex veniam aspernatur earum iste. Autem neque facere."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Nulla similique enim."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'illo-possimus-4' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 7], ["blog_id", 1], ["body", "Commodi et autem omnis ut. Beatae sequi a quo neque nostrum mollitia. Rerum temporibus odio hic. In facere voluptatibus. Ex ipsum sint est sint itaque amet et."], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["excerpt", "Esse quia quis distinctio."], ["published", true], ["slug", "illo-possimus-4"], ["title", "Et eius enim."], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test4' OR lower(name) = 'rspec4' OR lower(name) = 'ruby4' OR lower(name) = '#rails4') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails4"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 10], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["description", "Nisi corrupti ea amet voluptates qui. Voluptates voluptatem nulla autem quo. Necessitatibus animi est. Est sint dolorum consequatur ipsum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Repudiandae consequatur non enim maiores doloribus vel."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'est-voluptas-5' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 9], ["blog_id", 1], ["body", "Atque et omnis facilis. Facilis veritatis corrupti aspernatur consequatur non. Soluta ipsum perferendis. Esse ratione quis omnis natus ab. Omnis labore ducimus earum dolor maiores."], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["excerpt", "Quia."], ["published", true], ["slug", "est-voluptas-5"], ["title", "Fugiat dolorem reprehenderit sit."], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test5' OR lower(name) = 'rspec5' OR lower(name) = 'ruby5' OR lower(name) = '#rails5') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby5"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails5"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "tremayne.stehr@example.net"], ["author_name", "Lurline Jewess DVM"], ["body", "Voluptas hic id est. Voluptatem enim hic."], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "irma_ankunding@example.org"], ["author_name", "Alva Hartmann"], ["body", "Inventore natus voluptatum cumque quos. Beatae tempora iste voluptatem necessitatibus vitae. Odio hic facere quia."], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "elvera.stokes@example.net"], ["author_name", "Kelvin Terry"], ["body", "Qui est debitis aspernatur quibusdam. Aut et repellat."], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "javonte@example.net"], ["author_name", "Alisha Goldner"], ["body", "Dolorum nihil ut est amet tenetur fuga. Quibusdam nam ut hic sint debitis qui."], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "marques.rath@example.net"], ["author_name", "Dr. Aiyana Herzog"], ["body", "Rerum voluptatibus harum sit perspiciatis dolorem sunt. Neque et omnis voluptas fugit. Id ea fuga."], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "brycen@example.net"], ["author_name", "Ashlynn Quigley"], ["body", "Ratione non incidunt quibusdam est. Et cum nam qui veniam expedita."], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "roslyn.hyatt@example.com"], ["author_name", "Myah Gusikowski"], ["body", "Id dolor enim. Ullam ad magnam et harum nemo voluptate."], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "dolores.quitzon@example.org"], ["author_name", "Elsa Kilback DDS"], ["body", "Facere eaque est dicta totam quasi molestiae laudantium. Est nihil ut corrupti maiores eligendi."], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "makenna_ledner@example.org"], ["author_name", "Vesta Block PhD"], ["body", "Aut possimus dolorum ut rerum est molestiae aut. Eum aspernatur nulla explicabo facilis deleniti ut a. Voluptatem fugiat in voluptate."], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "lysanne.durgan@example.net"], ["author_name", "Daren Moen"], ["body", "Autem molestias reprehenderit."], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "lisandro@example.org"], ["author_name", "Rosario Zboncak"], ["body", "Laborum voluptatem officiis est cumque."], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "althea@example.com"], ["author_name", "John Ledner DDS"], ["body", "Aut rem aut non. Praesentium itaque et."], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "jonathan@example.org"], ["author_name", "Velva Gislason"], ["body", "Culpa nihil neque dolorem ut et. Non maxime enim totam. Voluptatem praesentium ut architecto molestiae officia error."], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "francis_wolff@example.org"], ["author_name", "Horacio Kilback"], ["body", "Sint dolore eos nostrum occaecati ratione maiores et. Voluptatem perferendis vel. Explicabo quia ut doloremque blanditiis quia."], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "lisa@example.net"], ["author_name", "Chyna Baumbach Sr."], ["body", "Sit eos adipisci. Ea delectus explicabo sunt provident in. Soluta sed itaque veniam libero est vel."], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["post_id", 1], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments" WHERE "almanac_comments"."spam" = 't'  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'kelsie_effertz@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "kelsie_effertz@example.com"], ["encrypted_password", "$2a$04$giOFbSTavn.Hjeknf8j8H.apatgD/NcsAzqU.uhULeT9All8RLsPC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs" Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Repellendus aspernatur earum ratione.", "description"=>"Sit officia aut tempore cumque error. Reiciendis adipisci in. Magnam laudantium ipsa facere mollitia culpa nobis dolorum. Ad ut eligendi corporis at. Eum ut sit assumenda eaque.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["description", "Sit officia aut tempore cumque error. Reiciendis adipisci in. Magnam laudantium ipsa facere mollitia culpa nobis dolorum. Ad ut eligendi corporis at. Eum ut sit assumenda eaque."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Repellendus aspernatur earum ratione."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 7ms (ActiveRecord: 0.9ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'guadalupe_gerhold@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "guadalupe_gerhold@example.net"], ["encrypted_password", "$2a$04$e5SH01qkh1.7zDBcL5CauOqx4TuVHiTQzFjLB7M/mzFa6Bn6W7Ray"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Doloremque veritatis.", "description"=>"Ratione repudiandae perspiciatis. Dolor totam molestiae quisquam unde numquam. Sed sit unde nesciunt. Et porro minus dolores dolorem. Earum alias debitis ad nemo vel enim.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["description", "Ratione repudiandae perspiciatis. Dolor totam molestiae quisquam unde numquam. Sed sit unde nesciunt. Et porro minus dolores dolorem. Earum alias debitis ad nemo vel enim."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Doloremque veritatis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 6ms (ActiveRecord: 0.8ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'kelsie_effertz@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "kelsie_effertz@example.com"], ["encrypted_password", "$2a$04$8yVS46MAFe88LId339yXoO4/GymcQ8Byc1QJ06Nl4rhOC9sqcOKCG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs" Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Repellendus aspernatur earum ratione assumenda. Aliquam non et ratione iusto. Voluptates quas suscipit incidunt sed. Et consequatur excepturi. Et occaecati rerum.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 20ms (Views: 13.5ms | ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'merlin_kuphal@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "merlin_kuphal@example.net"], ["encrypted_password", "$2a$04$FyjulqwgkeFGeMj1UOzXKO5BJDK7/T4In5pBc/zJG.QcefifmbhrG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Et consequuntur voluptates id iste pariatur vitae. Nobis molestiae quia. Numquam quis et enim fugiat natus laboriosam nemo.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 8ms (Views: 1.5ms | ActiveRecord: 0.4ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'kelsie_effertz@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "kelsie_effertz@example.com"], ["encrypted_password", "$2a$04$oLP0gtsCpoeT93JS67ondObH6TtPW3l1qlMUZbmCoKuGb863u.4mK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.6ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 11], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["description", "Sit officia aut tempore cumque error. Reiciendis adipisci in. Magnam laudantium ipsa facere mollitia culpa nobis dolorum. Ad ut eligendi corporis at. Eum ut sit assumenda eaque."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Repellendus aspernatur earum ratione."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Testz", "description"=>"Consectetur soluta voluptatum neque itaque totam fugit sunt. Quisquam facere incidunt ipsa. Magnam vitae iure unde distinctio. Repellat consequatur qui nam asperiores. Voluptas velit et quisquam cumque.", "author_id"=>"12"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Testz', "description" = 'Consectetur soluta voluptatum neque itaque totam fugit sunt. Quisquam facere incidunt ipsa. Magnam vitae iure unde distinctio. Repellat consequatur qui nam asperiores. Voluptas velit et quisquam cumque.', "author_id" = 12, "updated_at" = '2012-12-28 04:51:30.988881' WHERE "almanac_blogs"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 7ms (ActiveRecord: 0.4ms) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'adrian@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "adrian@example.com"], ["encrypted_password", "$2a$04$iWyGcLN5ix5tDZBN9soHq.uKp9J2IywXMESJAFgp5J5SQicVUNX0G"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 13], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00], ["description", "Accusamus beatae quis voluptas non sequi tempora et. Rerum voluptatem sapiente et quos debitis ea enim. Ut et quisquam nostrum velit. Dolorum iste deleniti inventore est qui libero aut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Necessitatibus alias doloremque id architecto itaque."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Facere nobis sapiente aliquid.", "description"=>"Quia cumque aut atque deleniti et. Qui et ipsum qui. Dicta et aliquam.", "author_id"=>"14"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Facere nobis sapiente aliquid.', "description" = 'Quia cumque aut atque deleniti et. Qui et ipsum qui. Dicta et aliquam.', "author_id" = 14, "updated_at" = '2012-12-28 04:51:31.008292' WHERE "almanac_blogs"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 6ms (ActiveRecord: 0.3ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'kelsie_effertz@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (33.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "kelsie_effertz@example.com"], ["encrypted_password", "$2a$04$12KQtC3WHjTDiotXQIoIXuxLJfGaYLW8oiJSuxPyHkThuJiY/7nxe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 15], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["description", "Sit officia aut tempore cumque error. Reiciendis adipisci in. Magnam laudantium ipsa facere mollitia culpa nobis dolorum. Ad ut eligendi corporis at. Eum ut sit assumenda eaque."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Repellendus aspernatur earum ratione."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Consectetur soluta voluptatum neque itaque totam fugit sunt. Quisquam facere incidunt ipsa. Magnam vitae iure unde distinctio. Repellat consequatur qui nam asperiores. Voluptas velit et quisquam cumque.", "author_id"=>"16"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 2.5ms | ActiveRecord: 0.2ms) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'adrian@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "adrian@example.com"], ["encrypted_password", "$2a$04$Upxy4W2YaqmWWUGcN7G2x.Dn29JfcoFDXKAZ/s.fG4dG97XKSaek."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 17], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["description", "Accusamus beatae quis voluptas non sequi tempora et. Rerum voluptatem sapiente et quos debitis ea enim. Ut et quisquam nostrum velit. Dolorum iste deleniti inventore est qui libero aut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Necessitatibus alias doloremque id architecto itaque."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Est sit beatae ipsum consequuntur vel. Quia cumque aut atque deleniti et. Qui et ipsum qui. Dicta et aliquam. Perferendis consectetur nesciunt et repudiandae voluptatibus optio.", "author_id"=>"18"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'kelsie_effertz@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "kelsie_effertz@example.com"], ["encrypted_password", "$2a$04$VkMv.GrKKXaFGyDRMo/U/uSO1swD1mJyCTysxNNNbBaHanuz8B28q"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 19], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["description", "Sit officia aut tempore cumque error. Reiciendis adipisci in. Magnam laudantium ipsa facere mollitia culpa nobis dolorum. Ad ut eligendi corporis at. Eum ut sit assumenda eaque."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Repellendus aspernatur earum ratione."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'libero-possimus-6' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 20], ["blog_id", 1], ["body", "Dolore repellendus ad aut cupiditate nulla enim. Temporibus dolorem veniam sunt voluptatibus ut dignissimos enim. Eaque ipsam adipisci. Necessitatibus quam soluta quia maiores. Voluptatum aut beatae. Quo quam labore vel tempore."], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["excerpt", "Sequi explicabo magni dicta vero accusantium."], ["published", true], ["slug", "libero-possimus-6"], ["title", "Consectetur soluta voluptatum neque itaque totam fugit sunt."], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test6' OR lower(name) = 'rspec6' OR lower(name) = 'ruby6' OR lower(name) = '#rails6') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test6"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec6"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby6"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails6"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."post_id" = 1 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5) SQL (0.2ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 33ms (ActiveRecord: 1.4ms)  (0.0ms) SELECT COUNT(*) FROM "almanac_posts"   (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'rolando@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "rolando@example.org"], ["encrypted_password", "$2a$04$mh6jsGoq4.sYQAAY1Qh/4uzhgOz/N7n02/.GCs/ondgdYJ9j39pG6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 21], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["description", "Assumenda pariatur voluptate animi quis nulla veniam omnis. Sit et fugit beatae dolor. Suscipit animi voluptatem sapiente nobis voluptatem. Facilis voluptas rerum dolor. Quis corporis provident sit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Voluptates aperiam ut veritatis aliquam mollitia ad."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'inventore-in-7' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 22], ["blog_id", 1], ["body", "Qui tempore mollitia consequatur facere consequuntur animi. Qui quae vel magnam nam error et debitis. Maiores sed aut maxime voluptas nobis. Vel eos error nesciunt asperiores quis ipsa. Dolor consectetur quia totam."], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["excerpt", "Quos."], ["published", true], ["slug", "inventore-in-7"], ["title", "Dolorum ea quaerat et excepturi perferendis."], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test7' OR lower(name) = 'rspec7' OR lower(name) = 'ruby7' OR lower(name) = '#rails7') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby7"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails7"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."post_id" = 1 ORDER BY id ASC ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 11ms (ActiveRecord: 1.0ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'kelsie_effertz@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "kelsie_effertz@example.com"], ["encrypted_password", "$2a$04$aLS7Boim4/sM7dc9S89hqupP0w4cLxnu5pwXkIZrevSFjMMFjUwzy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 23], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["description", "Sit officia aut tempore cumque error. Reiciendis adipisci in. Magnam laudantium ipsa facere mollitia culpa nobis dolorum. Ad ut eligendi corporis at. Eum ut sit assumenda eaque."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Repellendus aspernatur earum ratione."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_posts" Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Consectetur soluta voluptatum neque itaque totam fugit sunt.", "slug"=>"libero-possimus-8", "excerpt"=>"Sequi explicabo magni dicta vero accusantium.", "body"=>"Dolore repellendus ad aut cupiditate nulla enim. Temporibus dolorem veniam sunt voluptatibus ut dignissimos enim. Eaque ipsam adipisci. Necessitatibus quam soluta quia maiores. Voluptatum aut beatae. Quo quam labore vel tempore.", "published"=>true, "tag_list"=>"common,test8,rspec8,ruby8,#rails8", "author_id"=>"24", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'libero-possimus-8' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Dolore repellendus ad aut cupiditate nulla enim. Temporibus dolorem veniam sunt voluptatibus ut dignissimos enim. Eaque ipsam adipisci. Necessitatibus quam soluta quia maiores. Voluptatum aut beatae. Quo quam labore vel tempore."], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["excerpt", "Sequi explicabo magni dicta vero accusantium."], ["published", true], ["slug", "libero-possimus-8"], ["title", "Consectetur soluta voluptatum neque itaque totam fugit sunt."], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test8' OR lower(name) = 'rspec8' OR lower(name) = 'ruby8' OR lower(name) = '#rails8') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails8"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 27ms (ActiveRecord: 2.4ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'rolando@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "rolando@example.org"], ["encrypted_password", "$2a$04$KQjrqVaVHC3NmQ5gTpF79.r7KU52I1DRiZNwmZUuViibkhj/VVrzu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 25], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["description", "Assumenda pariatur voluptate animi quis nulla veniam omnis. Sit et fugit beatae dolor. Suscipit animi voluptatem sapiente nobis voluptatem. Facilis voluptas rerum dolor. Quis corporis provident sit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Voluptates aperiam ut veritatis aliquam mollitia ad."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Dolorum ea quaerat et excepturi perferendis.", "slug"=>"inventore-in-9", "excerpt"=>"Quos.", "body"=>"Qui tempore mollitia consequatur facere consequuntur animi. Qui quae vel magnam nam error et debitis. Maiores sed aut maxime voluptas nobis. Vel eos error nesciunt asperiores quis ipsa. Dolor consectetur quia totam.", "published"=>true, "tag_list"=>"common,test9,rspec9,ruby9,#rails9", "author_id"=>"26", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'inventore-in-9' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Qui tempore mollitia consequatur facere consequuntur animi. Qui quae vel magnam nam error et debitis. Maiores sed aut maxime voluptas nobis. Vel eos error nesciunt asperiores quis ipsa. Dolor consectetur quia totam."], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["excerpt", "Quos."], ["published", true], ["slug", "inventore-in-9"], ["title", "Dolorum ea quaerat et excepturi perferendis."], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test9' OR lower(name) = 'rspec9' OR lower(name) = 'ruby9' OR lower(name) = '#rails9') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test9"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec9"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby9"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails9"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 27ms (ActiveRecord: 2.3ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'kelsie_effertz@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "kelsie_effertz@example.com"], ["encrypted_password", "$2a$04$9JTklDQrnIP9tTjG20oIV.9JO7YLMajkGIx1T5tbbV/Fd9y8Ok2vW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 27], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["description", "Sit officia aut tempore cumque error. Reiciendis adipisci in. Magnam laudantium ipsa facere mollitia culpa nobis dolorum. Ad ut eligendi corporis at. Eum ut sit assumenda eaque."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Repellendus aspernatur earum ratione."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_posts" Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"error-ea-10", "excerpt"=>"Temporibus.", "body"=>"Omnis unde dolor vitae quod. Iure deleniti impedit iste vel accusantium. Quaerat omnis non enim quibusdam qui numquam. Sed provident dolorum recusandae qui laboriosam rerum. Necessitatibus quam soluta quia maiores.", "published"=>true, "tag_list"=>"common,test10,rspec10,ruby10,#rails10", "author_id"=>"28", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'error-ea-10' LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 13ms (Views: 2.8ms | ActiveRecord: 0.4ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"   (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'halle@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "halle@example.net"], ["encrypted_password", "$2a$04$uETLWPi1Sz.KZrAUo7MvbeN8kKWLvM5xGHiKH24XKCd3IHMVFyxjS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 29], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["description", "Suscipit quia illum laboriosam qui. Voluptates aperiam ut veritatis aliquam mollitia ad doloremque. Assumenda pariatur voluptate animi quis nulla veniam omnis. Sit et fugit beatae dolor. Suscipit animi voluptatem sapiente nobis voluptatem."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Neque eos sapiente."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"dolore-ipsa-11", "excerpt"=>"Sunt.", "body"=>"Eum voluptatem et voluptatem error odio. Sunt omnis tempore voluptas qui dolorem harum consectetur. Ut in quod. Ea repudiandae reprehenderit. Qui eum laborum non adipisci.", "published"=>true, "tag_list"=>"common,test11,rspec11,ruby11,#rails11", "author_id"=>"30", "written_at"=>"2012-12-27", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolore-ipsa-11' LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 1.4ms | ActiveRecord: 0.5ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'coy.ullrich@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "coy.ullrich@example.net"], ["encrypted_password", "$2a$04$FEVnj7O4i2OFSBt9d1UtzeOyvo28b6Mz19504XXHoy/8JEXqgcC/C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 31], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["description", "Aperiam quos reiciendis quia est. Sapiente rerum repellat quas ducimus. Provident eveniet hic. Porro ab non voluptatem est dolores necessitatibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et alias."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'error-omnis-12' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 32], ["blog_id", 1], ["body", "Omnis unde dolor vitae quod. Iure deleniti impedit iste vel accusantium. Quaerat omnis non enim quibusdam qui numquam. Sed provident dolorum recusandae qui laboriosam rerum. Necessitatibus quam soluta quia maiores."], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["excerpt", "Temporibus."], ["published", true], ["slug", "error-omnis-12"], ["title", "Minus beatae voluptatum."], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test12' OR lower(name) = 'rspec12' OR lower(name) = 'ruby12' OR lower(name) = '#rails12') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test12"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec12"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby12"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails12"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-voluptatem-13' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 33], ["blog_id", 1], ["body", "Consequuntur atque aut enim. Eius facilis tempora quaerat. Autem aperiam eum dolorem commodi voluptatem. Eos consequuntur numquam. Illum totam asperiores accusantium voluptatum consequatur."], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["excerpt", "Quo."], ["published", true], ["slug", "et-voluptatem-13"], ["title", "Voluptatum aut beatae."], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test13' OR lower(name) = 'rspec13' OR lower(name) = 'ruby13' OR lower(name) = '#rails13') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test13' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails13"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-sequi-14' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 34], ["blog_id", 1], ["body", "Assumenda qui ut modi. Id est dolore. Est et fuga eligendi veniam aut ut doloremque. Quidem voluptatem vel cum odit dolore. Et id vitae ad. Dolores deleniti quia excepturi quo. Vitae eveniet necessitatibus impedit."], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["excerpt", "Est ut quia sunt non."], ["published", true], ["slug", "et-sequi-14"], ["title", "Ab facilis maxime ipsa."], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test14' OR lower(name) = 'rspec14' OR lower(name) = 'ruby14' OR lower(name) = '#rails14') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test14"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec14"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby14"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails14"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quas-ea-15' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 35], ["blog_id", 1], ["body", "A repudiandae labore ipsam amet aut. Ut sunt corrupti similique alias. Corrupti rerum voluptas earum minus rerum. Non animi reiciendis vel. Nesciunt nam enim similique nulla minus asperiores ullam. Hic natus facere. Ullam eius est id ut nobis eos."], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["excerpt", "Temporibus sint praesentium voluptatibus."], ["published", true], ["slug", "quas-ea-15"], ["title", "Qui in aut dolor assumenda doloribus nobis quia."], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test15' OR lower(name) = 'rspec15' OR lower(name) = 'ruby15' OR lower(name) = '#rails15') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test15"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec15"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby15"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails15"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quasi-fuga-16' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 36], ["blog_id", 1], ["body", "Et ratione voluptas est reprehenderit iure. Omnis quis omnis quos. Temporibus natus deserunt fuga quia omnis quasi provident. Molestias error illo. Sapiente eaque reiciendis esse voluptates at. Deserunt adipisci voluptas. Aliquam quo beatae officiis."], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["excerpt", "Minus ut dolores quae sed."], ["published", true], ["slug", "quasi-fuga-16"], ["title", "Corrupti maiores tempore pariatur perferendis totam minima voluptatem."], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test16' OR lower(name) = 'rspec16' OR lower(name) = 'ruby16' OR lower(name) = '#rails16') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test16"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec16"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby16"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails16"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 7ms (Views: 2.3ms | ActiveRecord: 0.1ms) Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'eriberto.cronin@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "eriberto.cronin@example.org"], ["encrypted_password", "$2a$04$1r49UAIoA48voz3s30YG0uIM4qB6eeyqj//hYKI3BLsfvf4Zmn3Wm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 37], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["description", "Dicta repellendus in vel ut accusantium nobis. Dolor quis numquam. Rerum qui labore ipsam ipsum est temporibus. Pariatur nihil voluptas accusamus nam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Provident nostrum harum non et modi qui."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'soluta-fugiat-17' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 38], ["blog_id", 1], ["body", "Et corporis animi voluptates repellat ex non temporibus. Dolor debitis adipisci expedita perspiciatis unde ad facilis. Ut aliquam iusto explicabo ratione omnis quidem. Quod quasi autem quidem. Qui eaque consectetur recusandae sunt suscipit. Totam voluptatem autem. Voluptate accusamus maxime ut vel dicta non culpa."], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["excerpt", "Deleniti impedit quos consectetur."], ["published", false], ["slug", "soluta-fugiat-17"], ["title", "Commodi veritatis quo repellendus corrupti."], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test17' OR lower(name) = 'rspec17' OR lower(name) = 'ruby17' OR lower(name) = '#rails17') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test17"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec17"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby17"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails17"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'architecto-sequi-18' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 39], ["blog_id", 1], ["body", "Temporibus aut quia voluptatum officiis cum voluptatibus velit. Et praesentium voluptatibus quibusdam inventore voluptas ut. Reprehenderit consequatur tempore. Eum minima iste aut. Et ipsam maxime."], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["excerpt", "Vel dolor accusantium."], ["published", false], ["slug", "architecto-sequi-18"], ["title", "Quas dignissimos et dolores quod nesciunt sit."], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test18' OR lower(name) = 'rspec18' OR lower(name) = 'ruby18' OR lower(name) = '#rails18') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test18' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test18"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec18' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec18"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby18' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby18"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails18' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails18"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-corporis-19' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 40], ["blog_id", 1], ["body", "Est similique accusantium cum ipsa incidunt. Reprehenderit quos omnis ab sunt. Rerum in expedita error qui totam quasi vero. Minus pariatur eaque architecto error qui qui aut. Quia illo accusantium suscipit. Aut ratione dolorem magni consequuntur. Amet corporis culpa praesentium non."], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["excerpt", "Ea voluptatem quos."], ["published", false], ["slug", "aut-corporis-19"], ["title", "Qui quo architecto pariatur officia illum exercitationem."], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test19' OR lower(name) = 'rspec19' OR lower(name) = 'ruby19' OR lower(name) = '#rails19') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test19"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec19"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby19"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails19"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 6ms (Views: 1.6ms | ActiveRecord: 0.1ms) Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f' ORDER BY written_at DESC, id DESC  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'casimir.muller@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "casimir.muller@example.org"], ["encrypted_password", "$2a$04$t0mEfjTMwO5HkAAfROdEWeGfSSVPwrjkKjQg6618gPNq26wVY9me6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 41], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["description", "Porro animi rem hic in. Ut cum explicabo quibusdam assumenda ad ut saepe. Sint voluptas qui minima. Ut dolores minus sunt vel doloribus veritatis. Ducimus dolores doloremque voluptas nostrum provident."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Est magnam facilis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 6ms (Views: 1.7ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'kelsie_effertz@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "kelsie_effertz@example.com"], ["encrypted_password", "$2a$04$j6kJRZrHj2fX8cd1/QXn9O7rglPiMThbNd7T72/bfmGYcPHfXclZK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 42], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["description", "Sit officia aut tempore cumque error. Reiciendis adipisci in. Magnam laudantium ipsa facere mollitia culpa nobis dolorum. Ad ut eligendi corporis at. Eum ut sit assumenda eaque."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Repellendus aspernatur earum ratione."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'libero-possimus-20' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 43], ["blog_id", 1], ["body", "Dolore repellendus ad aut cupiditate nulla enim. Temporibus dolorem veniam sunt voluptatibus ut dignissimos enim. Eaque ipsam adipisci. Necessitatibus quam soluta quia maiores. Voluptatum aut beatae. Quo quam labore vel tempore."], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["excerpt", "Sequi explicabo magni dicta vero accusantium."], ["published", true], ["slug", "libero-possimus-20"], ["title", "Consectetur soluta voluptatum neque itaque totam fugit sunt."], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test20' OR lower(name) = 'rspec20' OR lower(name) = 'ruby20' OR lower(name) = '#rails20') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test20' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test20"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec20' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec20"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby20' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby20"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails20' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails20"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.5ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Testz", "slug"=>"corporis-voluptas-21", "excerpt"=>"Magnam.", "body"=>"Eius facilis tempora quaerat. Autem aperiam eum dolorem commodi voluptatem. Eos consequuntur numquam. Illum totam asperiores accusantium voluptatum consequatur. Ab facilis maxime ipsa.", "published"=>true, "tag_list"=>"common,test21,rspec21,ruby21,#rails21", "author_id"=>"44", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'corporis-voluptas-21' AND "almanac_posts"."id" != 1) LIMIT 1  (0.6ms) UPDATE "almanac_posts" SET "title" = 'Testz', "slug" = 'corporis-voluptas-21', "excerpt" = 'Magnam.', "body" = 'Eius facilis tempora quaerat. Autem aperiam eum dolorem commodi voluptatem. Eos consequuntur numquam. Illum totam asperiores accusantium voluptatum consequatur. Ab facilis maxime ipsa.', "author_id" = 44, "updated_at" = '2012-12-28 04:51:31.715564' WHERE "almanac_posts"."id" = 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test21' OR lower(name) = 'rspec21' OR lower(name) = 'ruby21' OR lower(name) = '#rails21') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test21' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test21"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec21"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby21"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails21"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."tagger_type" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."context" = 'tags' AND "taggings"."tag_id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 31ms (ActiveRecord: 3.0ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'carli.wehner@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "carli.wehner@example.com"], ["encrypted_password", "$2a$04$yF1LGJC7MqmjAbfcrSIZRecfWBXdLXDeBF.XSVcmv07TsB2Iphxvq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 45], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["description", "Voluptatibus atque rerum officiis impedit. Dolores blanditiis qui quia. Aut quod magni impedit dolor amet aliquid aperiam. Nisi ipsum fugiat praesentium qui eos."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quibusdam nam ut hic sint debitis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'neque-consequatur-22' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 46], ["blog_id", 1], ["body", "Consequatur dolores perferendis aut sapiente quos. Vitae soluta voluptatem eaque placeat illum tempora aspernatur. Labore consequatur ut sit consequuntur ut tenetur est. Rerum quis unde velit sit minus eveniet odio. Doloribus sint iusto nihil quos."], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["excerpt", "Non."], ["published", true], ["slug", "neque-consequatur-22"], ["title", "Quae quos accusamus aspernatur tempora."], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test22' OR lower(name) = 'rspec22' OR lower(name) = 'ruby22' OR lower(name) = '#rails22') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test22"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec22"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby22"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails22"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Fugiat quibusdam voluptas voluptates ab sint qui.", "slug"=>"aut-officia-23", "excerpt"=>"Dolor consequuntur sunt.", "body"=>"Vero minima aliquid eligendi. Omnis eveniet maiores dolores quis in sit. Maiores quo omnis dicta provident nemo. Rerum quia ad. Rerum reiciendis nobis. Nisi dolores illum tempore molestiae. Laborum voluptatibus deleniti ut.", "published"=>true, "tag_list"=>"common,test23,rspec23,ruby23,#rails23", "author_id"=>"47", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'aut-officia-23' AND "almanac_posts"."id" != 1) LIMIT 1  (0.1ms) UPDATE "almanac_posts" SET "title" = 'Fugiat quibusdam voluptas voluptates ab sint qui.', "slug" = 'aut-officia-23', "excerpt" = 'Dolor consequuntur sunt.', "body" = 'Vero minima aliquid eligendi. Omnis eveniet maiores dolores quis in sit. Maiores quo omnis dicta provident nemo. Rerum quia ad. Rerum reiciendis nobis. Nisi dolores illum tempore molestiae. Laborum voluptatibus deleniti ut.', "author_id" = 47, "updated_at" = '2012-12-28 04:51:31.782991' WHERE "almanac_posts"."id" = 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test23' OR lower(name) = 'rspec23' OR lower(name) = 'ruby23' OR lower(name) = '#rails23') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test23' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test23"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec23"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby23"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails23"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."tagger_type" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."context" = 'tags' AND "taggings"."tag_id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 31ms (ActiveRecord: 2.7ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'kelsie_effertz@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "kelsie_effertz@example.com"], ["encrypted_password", "$2a$04$1zWsAb8mxNk.YsNRPi0wyuRLstcKszSZqBIqedcnNAY.s3J8KLKQq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 48], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["description", "Sit officia aut tempore cumque error. Reiciendis adipisci in. Magnam laudantium ipsa facere mollitia culpa nobis dolorum. Ad ut eligendi corporis at. Eum ut sit assumenda eaque."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Repellendus aspernatur earum ratione."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'libero-possimus-24' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 49], ["blog_id", 1], ["body", "Dolore repellendus ad aut cupiditate nulla enim. Temporibus dolorem veniam sunt voluptatibus ut dignissimos enim. Eaque ipsam adipisci. Necessitatibus quam soluta quia maiores. Voluptatum aut beatae. Quo quam labore vel tempore."], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["excerpt", "Sequi explicabo magni dicta vero accusantium."], ["published", true], ["slug", "libero-possimus-24"], ["title", "Consectetur soluta voluptatum neque itaque totam fugit sunt."], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test24' OR lower(name) = 'rspec24' OR lower(name) = 'ruby24' OR lower(name) = '#rails24') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test24"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec24"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby24"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails24"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"corporis-voluptas-25", "excerpt"=>"Magnam.", "body"=>"Eius facilis tempora quaerat. Autem aperiam eum dolorem commodi voluptatem. Eos consequuntur numquam. Illum totam asperiores accusantium voluptatum consequatur. Ab facilis maxime ipsa.", "published"=>true, "tag_list"=>"common,test25,rspec25,ruby25,#rails25", "author_id"=>"50", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'corporis-voluptas-25' AND "almanac_posts"."id" != 1) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 13ms (Views: 2.2ms | ActiveRecord: 0.5ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'carli.wehner@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "carli.wehner@example.com"], ["encrypted_password", "$2a$04$hFqA5ZrYn5k/5vpFz8gBUeI8aKI8Qj4iq5YXp6aDoWy1Hi31jfaNe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 51], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["description", "Voluptatibus atque rerum officiis impedit. Dolores blanditiis qui quia. Aut quod magni impedit dolor amet aliquid aperiam. Nisi ipsum fugiat praesentium qui eos."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quibusdam nam ut hic sint debitis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'neque-consequatur-26' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 52], ["blog_id", 1], ["body", "Consequatur dolores perferendis aut sapiente quos. Vitae soluta voluptatem eaque placeat illum tempora aspernatur. Labore consequatur ut sit consequuntur ut tenetur est. Rerum quis unde velit sit minus eveniet odio. Doloribus sint iusto nihil quos."], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["excerpt", "Non."], ["published", true], ["slug", "neque-consequatur-26"], ["title", "Quae quos accusamus aspernatur tempora."], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test26' OR lower(name) = 'rspec26' OR lower(name) = 'ruby26' OR lower(name) = '#rails26') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test26"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby26"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails26"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"distinctio-iusto-27", "excerpt"=>"Vel illum corrupti dolores.", "body"=>"Sit dolore magni enim voluptas accusamus explicabo corrupti. Vero minima aliquid eligendi. Omnis eveniet maiores dolores quis in sit. Maiores quo omnis dicta provident nemo. Rerum quia ad. Rerum reiciendis nobis. Nisi dolores illum tempore molestiae.", "published"=>true, "tag_list"=>"common,test27,rspec27,ruby27,#rails27", "author_id"=>"53", "written_at"=>"2012-12-27"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'distinctio-iusto-27' AND "almanac_posts"."id" != 1) LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 51ms (Views: 1.5ms | ActiveRecord: 0.7ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'kelsie_effertz@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "kelsie_effertz@example.com"], ["encrypted_password", "$2a$04$Mwvzu3QO0.C5kFymXsiOsuB3K6XBJdi93OK3HIFk3/Og2qtpmez96"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 54], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["description", "Sit officia aut tempore cumque error. Reiciendis adipisci in. Magnam laudantium ipsa facere mollitia culpa nobis dolorum. Ad ut eligendi corporis at. Eum ut sit assumenda eaque."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Repellendus aspernatur earum ratione."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'libero-possimus-28' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 55], ["blog_id", 1], ["body", "Dolore repellendus ad aut cupiditate nulla enim. Temporibus dolorem veniam sunt voluptatibus ut dignissimos enim. Eaque ipsam adipisci. Necessitatibus quam soluta quia maiores. Voluptatum aut beatae. Quo quam labore vel tempore."], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["excerpt", "Sequi explicabo magni dicta vero accusantium."], ["published", true], ["slug", "libero-possimus-28"], ["title", "Consectetur soluta voluptatum neque itaque totam fugit sunt."], ["updated_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test28' OR lower(name) = 'rspec28' OR lower(name) = 'ruby28' OR lower(name) = '#rails28') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test28"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec28"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby28"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails28"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:31 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'distinctio-dolore-29' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 56], ["blog_id", 1], ["body", "Aut tempore sit. Corporis cupiditate ea temporibus. Dolores fuga iste et. Et sint atque. Quia id est aut corporis sint natus."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Earum."], ["published", true], ["slug", "distinctio-dolore-29"], ["title", "Et corrupti est ullam unde natus."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test29' OR lower(name) = 'rspec29' OR lower(name) = 'ruby29' OR lower(name) = '#rails29') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test29' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec29"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby29"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails29"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sit-aut-30' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 57], ["blog_id", 1], ["body", "Ut tempora consequatur numquam. Ex quia facilis harum delectus rem. Est saepe aut earum autem asperiores rerum. Eaque quis adipisci. Velit aut fugit exercitationem sunt incidunt. Odit quae aut dignissimos quo unde."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Veniam deserunt error."], ["published", true], ["slug", "sit-aut-30"], ["title", "Qui occaecati est beatae."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test30' OR lower(name) = 'rspec30' OR lower(name) = 'ruby30' OR lower(name) = '#rails30') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec30"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby30"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails30"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'officiis-nobis-31' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 58], ["blog_id", 1], ["body", "Ut sunt corrupti similique alias. Corrupti rerum voluptas earum minus rerum. Non animi reiciendis vel. Nesciunt nam enim similique nulla minus asperiores ullam. Hic natus facere. Ullam eius est id ut nobis eos. Corrupti maiores tempore pariatur perferendis totam minima voluptatem."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "A repudiandae labore ipsam."], ["published", true], ["slug", "officiis-nobis-31"], ["title", "Dolore et saepe quisquam."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test31' OR lower(name) = 'rspec31' OR lower(name) = 'ruby31' OR lower(name) = '#rails31') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails31"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'praesentium-at-32' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 59], ["blog_id", 1], ["body", "Omnis quis omnis quos. Temporibus natus deserunt fuga quia omnis quasi provident. Molestias error illo. Sapiente eaque reiciendis esse voluptates at. Deserunt adipisci voluptas. Aliquam quo beatae officiis. Nam facere ut vero beatae quia et modi."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Et ratione voluptas est."], ["published", true], ["slug", "praesentium-at-32"], ["title", "Dignissimos id iure."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test32' OR lower(name) = 'rspec32' OR lower(name) = 'ruby32' OR lower(name) = '#rails32') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails32"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Parameters: {"tag_name"=>"common"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common') Completed 200 OK in 9ms (Views: 2.2ms | ActiveRecord: 0.2ms) Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" JOIN taggings posts_taggings_ec90eea ON posts_taggings_ec90eea.taggable_id = almanac_posts.id AND posts_taggings_ec90eea.taggable_type = 'Almanac::Post' AND posts_taggings_ec90eea.tag_id = 1 WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jayce@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jayce@example.com"], ["encrypted_password", "$2a$04$HYfWKzwVJON4BNeHhJY2OeuIYBi2QvvMovaQlJ1/yd260d/HDVKha"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 60], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["description", "Recusandae in animi. Molestiae laborum odit itaque voluptas deleniti. Eveniet ut at eum magnam neque ut. Nesciunt minus autem quia accusantium minima."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sapiente et non alias voluptatem natus."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 61], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["description", "Quam sunt consequatur ipsa illo nobis. Atque et omnis facilis. Facilis veritatis corrupti aspernatur consequatur non."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolorem accusantium."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 63], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["description", "Necessitatibus animi est. Est sint dolorum consequatur ipsum. Quasi omnis reiciendis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Est ad nihil temporibus voluptas iusto qui."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 66], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["description", "Eius quam aliquam accusantium nisi esse. Consequatur exercitationem et eum numquam sit. In nulla autem. Eum facere velit perferendis."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quis eius quo sunt blanditiis ut nihil."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'fugit-praesentium-33' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 65], ["blog_id", 1], ["body", "Debitis aut expedita mollitia ea sunt itaque eum. Fugiat sed hic neque. Asperiores eligendi nihil. Nam qui fugit sed. Et minima magnam quis ea. Doloribus aut animi fugiat nesciunt ratione. Expedita quasi deleniti a consectetur vitae."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Cum accusamus ipsa."], ["published", true], ["slug", "fugit-praesentium-33"], ["title", "Sint reiciendis maiores veritatis nihil eos vel."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test33' OR lower(name) = 'rspec33' OR lower(name) = 'ruby33' OR lower(name) = '#rails33') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test33"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec33"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby33"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails33"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 68], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["description", "Voluptatem voluptatem laboriosam et at ipsam quis. Assumenda quod ut aliquid. Explicabo commodi ducimus dolorem excepturi quibusdam error. Labore dolores voluptatem quo optio in alias et."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Recusandae qui dolor est."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 70], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["description", "Aliquid autem sed qui. Architecto voluptas quia non molestias sed. Iusto modi culpa quo facilis est id."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aut adipisci qui consectetur odit ab soluta."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quia-corrupti-34' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 72], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["description", "Alias repudiandae corporis. Aliquam aut cumque ipsa et. Et omnis sequi eveniet consequuntur rerum maxime qui."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Debitis voluptatem nihil."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'autem-officiis-35' LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 74], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["description", "Libero recusandae sit atque adipisci qui. Fugit et facere est aspernatur cum. Quae velit voluptatem dolorem voluptates."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Voluptas cumque doloremque atque nihil hic."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eius-nulla-36' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 76], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["description", "Pariatur sint et autem. Cumque quaerat odio et ea labore dicta. Illum ad ipsa voluptatem."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Praesentium veritatis enim voluptas officia reiciendis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolores-ut-37' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 78], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["description", "Aut qui repellat sequi asperiores. Molestiae aut quia reprehenderit provident totam. Nesciunt quisquam eveniet fuga qui aperiam facere iusto. Pariatur hic placeat consequatur voluptatibus perferendis et omnis. Qui ut et totam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sint dolorem ut aut ut nihil."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'distinctio-ut-38' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-aut-39' LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'cupiditate-dignissimos-40' LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 82], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["description", "Cumque et nesciunt ratione totam est. Quod excepturi aperiam. Dolorum ea ipsum quos maxime doloribus et. Praesentium quo qui necessitatibus ab eveniet sed. Totam velit voluptate."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Omnis reiciendis."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-quaerat-41' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 84], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["description", "Sint repellat iste minus et commodi. Perspiciatis adipisci voluptatem eveniet consequuntur animi exercitationem. Voluptatum sed non. Sunt vitae in commodi cupiditate. Sit voluptate occaecati in delectus eum nostrum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Alias similique sed."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 85], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["description", "Quod excepturi consequatur sit quae. Voluptates voluptatibus labore ratione. Est odit et. Repellat adipisci alias voluptatem eum laborum repudiandae nemo. Ut nostrum consequatur impedit ad."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Necessitatibus et consequuntur minus sint qui."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolorem-consequatur-42' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 86], ["blog_id", 1], ["body", "Vel accusamus autem dolore numquam architecto. In et velit eveniet rerum nam quo deleniti. Repellendus in est consequuntur omnis inventore sit. Voluptas assumenda aspernatur laborum. Voluptatem et quaerat."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Facere ex magni sit."], ["published", true], ["slug", "dolorem-consequatur-42"], ["title", "Pariatur quis ipsam."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test44' OR lower(name) = 'rspec44' OR lower(name) = 'ruby44' OR lower(name) = '#rails44') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test44"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec44"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby44"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails44"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-nisi-43' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 87], ["blog_id", 1], ["body", "Vitae quos modi aut quia amet dolores. Et voluptas molestiae nam sequi rem. Dolores ab quo aut tenetur. Deleniti assumenda delectus asperiores et voluptas occaecati. Recusandae et et. Ad exercitationem qui velit asperiores repellat dolor illum. Et nihil consequatur dolores."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Ducimus recusandae dicta maxime."], ["published", true], ["slug", "aut-nisi-43"], ["title", "Asperiores sed est."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test45' OR lower(name) = 'rspec45' OR lower(name) = 'ruby45' OR lower(name) = '#rails45') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test45' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test45"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec45"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby45"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails45"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 88], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["description", "Sed illo eius ipsa fugiat totam sapiente. Unde repellat quasi autem. Earum impedit reprehenderit atque. Et aliquid at itaque similique fugit aut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Accusantium assumenda quo."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'maiores-voluptatum-44' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 89], ["blog_id", 1], ["body", "Enim eum iusto consequatur maxime non voluptatem. Ut vel blanditiis et et. Corporis molestiae laudantium totam ut velit ut minus. Aut occaecati et ut ducimus libero optio voluptatem. Fuga placeat optio debitis. Asperiores esse facilis dolorem porro in expedita. Non dolores culpa dolor."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Et corrupti cupiditate tempora nihil dolore."], ["published", true], ["slug", "maiores-voluptatum-44"], ["title", "Laudantium dolor dolores enim."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test46' OR lower(name) = 'rspec46' OR lower(name) = 'ruby46' OR lower(name) = '#rails46') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby46' LIMIT 1 SQL (0.2ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby46"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails46"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'minus-repudiandae-45' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 90], ["blog_id", 1], ["body", "Rerum et iure omnis voluptatem enim assumenda. Mollitia excepturi quidem voluptas dolor ab. Dolor rem hic molestiae voluptatibus dicta modi. Qui officiis amet. Quos id corrupti earum praesentium. Ullam consequatur distinctio quis praesentium. Sapiente doloribus vero voluptas quia inventore quia possimus."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Aut voluptates temporibus exercitationem qui sunt."], ["published", true], ["slug", "minus-repudiandae-45"], ["title", "Laborum laboriosam quae corporis earum."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test47' OR lower(name) = 'rspec47' OR lower(name) = 'ruby47' OR lower(name) = '#rails47') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test47' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails47"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quidem-neque-46' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 91], ["blog_id", 1], ["body", "Sed non quod. Voluptate vero et sapiente. Dolores perspiciatis repellat ut recusandae nam ea. Excepturi nulla enim reiciendis. Eum incidunt nisi est. Nesciunt dolore assumenda nostrum. Alias officiis vitae sunt eius."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Fuga ut."], ["published", true], ["slug", "quidem-neque-46"], ["title", "In iusto exercitationem dolor."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test48' OR lower(name) = 'rspec48' OR lower(name) = 'ruby48' OR lower(name) = '#rails48') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails48"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'reiciendis-ullam-47' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 92], ["blog_id", 1], ["body", "Velit nam voluptatem eos incidunt. Iure adipisci voluptas minus aut nihil. Est velit itaque magnam deleniti ut rerum eos. Aut adipisci qui consectetur odit ab soluta quam. Aut omnis corrupti et voluptate dolorem. Dolorum sed qui. Minus perspiciatis quod rem."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Veniam iusto."], ["published", true], ["slug", "reiciendis-ullam-47"], ["title", "Molestiae natus quod ut est magnam corrupti."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test49' OR lower(name) = 'rspec49' OR lower(name) = 'ruby49' OR lower(name) = '#rails49') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails49"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quisquam-corrupti-48' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 93], ["blog_id", 1], ["body", "Tempora ut quo rerum nam quo suscipit. Fugiat ratione mollitia quia corrupti tempora quo. Quia provident laudantium est illum ducimus voluptas. Tenetur placeat occaecati aliquam ut nisi. Beatae deleniti dolor et voluptatem alias. Maxime aspernatur quia sed quo iure. Omnis dolor hic ut et et minima maxime."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Voluptatum placeat corporis repudiandae officiis."], ["published", false], ["slug", "quisquam-corrupti-48"], ["title", "Odit enim voluptatem."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test50' OR lower(name) = 'rspec50' OR lower(name) = 'ruby50' OR lower(name) = '#rails50') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test50' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails50"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quas-molestiae-49' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 94], ["blog_id", 1], ["body", "Error pariatur modi culpa quia sunt laboriosam. Quia perferendis exercitationem et pariatur. Consequatur vitae dolores rerum facilis et aperiam recusandae. Et maxime ipsam nulla voluptatibus ea rerum accusamus. Et corporis nihil adipisci."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Sit voluptatem eaque commodi illo sapiente."], ["published", false], ["slug", "quas-molestiae-49"], ["title", "Eligendi et accusamus eos laboriosam ut et."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test51' OR lower(name) = 'rspec51' OR lower(name) = 'ruby51' OR lower(name) = '#rails51') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test51' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec51' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby51' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails51' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails51"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'vel-et-50' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 95], ["blog_id", 1], ["body", "Velit omnis quia voluptate quia qui tempore aut. Illum voluptatum quia porro quaerat. Voluptas cumque doloremque atque nihil hic dolorem. Sit aut eos. Aut nisi ratione dolores tempore voluptatem fugiat ut."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Rerum."], ["published", false], ["slug", "vel-et-50"], ["title", "Quasi dolores sequi mollitia dolorem harum."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test52' OR lower(name) = 'rspec52' OR lower(name) = 'ruby52' OR lower(name) = '#rails52') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails52"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 't'  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 96], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["description", "Blanditiis et odio vel ipsam sunt fugit beatae. Quis asperiores quod rem consectetur commodi aut vel. Vel delectus possimus occaecati sint architecto. Illum nobis nihil dolorem."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Fugiat dolorem reprehenderit."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'est-quis-51' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 97], ["blog_id", 1], ["body", "Quo facilis quis. Nisi corrupti ea amet voluptates qui. Voluptates voluptatem nulla autem quo. Necessitatibus animi est. Est sint dolorum consequatur ipsum. Quasi omnis reiciendis."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Omnis labore ducimus earum."], ["published", true], ["slug", "est-quis-51"], ["title", "Consequatur vitae iste."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test53' OR lower(name) = 'rspec53' OR lower(name) = 'ruby53' OR lower(name) = '#rails53') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test53"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec53"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby53"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails53"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-et-52' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 98], ["blog_id", 1], ["body", "Vero est perspiciatis ut. Fuga voluptatum autem dolorem quia odit aut modi. Vel ullam fugit. Porro ea omnis ut occaecati. Illum quo facere dolorem fugit ut omnis."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Eum asperiores."], ["published", true], ["slug", "et-et-52"], ["title", "Suscipit architecto nihil unde omnis in ducimus distinctio."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test54' OR lower(name) = 'rspec54' OR lower(name) = 'ruby54' OR lower(name) = '#rails54') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test54' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails54"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.2ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.2ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'labore-commodi-53' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 99], ["blog_id", 1], ["body", "Dolorem doloribus non id omnis explicabo. Esse repellendus culpa distinctio fugiat corrupti unde. Voluptatem culpa eos pariatur vel velit consequuntur. Eius et doloremque aut et iusto. Explicabo accusamus nesciunt voluptate."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Minima ad repellendus expedita quam."], ["published", true], ["slug", "labore-commodi-53"], ["title", "Laudantium omnis id ducimus esse atque soluta."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test55' OR lower(name) = 'rspec55' OR lower(name) = 'ruby55' OR lower(name) = '#rails55') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test55"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec55"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby55"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails55"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'recusandae-hic-54' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 100], ["blog_id", 1], ["body", "Sint laborum qui debitis quasi. Pariatur est nihil. Non rerum non ullam. Facere corporis vero praesentium animi quod numquam. Sit at tempora fugiat ea. Id inventore et cupiditate. Sunt consequatur fugit provident."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Quis qui inventore iusto dignissimos."], ["published", false], ["slug", "recusandae-hic-54"], ["title", "Est et dolor."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test56' OR lower(name) = 'rspec56' OR lower(name) = 'ruby56' OR lower(name) = '#rails56') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec56"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby56"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails56"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'inventore-et-55' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 101], ["blog_id", 1], ["body", "Eos itaque voluptates ut fugit ut. Quisquam nesciunt et voluptas magnam ipsam aut. Amet odit ullam autem illo rem laudantium aut. Accusamus voluptate enim quia expedita. Expedita eius quod. Voluptatem libero aut fugit aperiam nobis. Quaerat eos eum nemo odit totam."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Enim deserunt."], ["published", false], ["slug", "inventore-et-55"], ["title", "Repellat hic temporibus expedita et."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test57' OR lower(name) = 'rspec57' OR lower(name) = 'ruby57' OR lower(name) = '#rails57') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails57"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'vero-temporibus-56' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 102], ["blog_id", 1], ["body", "Totam ut alias explicabo. Omnis hic dolorem ipsum ipsam sunt non iste. Corrupti exercitationem expedita non magnam ut ex maxime. Ut soluta consequatur. Debitis aut dolor libero id suscipit accusantium. In quo tempore."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "At et recusandae."], ["published", false], ["slug", "vero-temporibus-56"], ["title", "Doloremque aut ut repellat laboriosam aspernatur architecto id."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test58' OR lower(name) = 'rspec58' OR lower(name) = 'ruby58' OR lower(name) = '#rails58') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails58"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f'  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 103], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["description", "Sed illo eius ipsa fugiat totam sapiente. Unde repellat quasi autem. Earum impedit reprehenderit atque. Et aliquid at itaque similique fugit aut."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Accusantium assumenda quo."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'maiores-voluptatum-57' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 104], ["blog_id", 1], ["body", "Enim eum iusto consequatur maxime non voluptatem. Ut vel blanditiis et et. Corporis molestiae laudantium totam ut velit ut minus. Aut occaecati et ut ducimus libero optio voluptatem. Fuga placeat optio debitis. Asperiores esse facilis dolorem porro in expedita. Non dolores culpa dolor."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Et corrupti cupiditate tempora nihil dolore."], ["published", true], ["slug", "maiores-voluptatum-57"], ["title", "Laudantium dolor dolores enim."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test59' OR lower(name) = 'rspec59' OR lower(name) = 'ruby59' OR lower(name) = '#rails59') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test59"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec59"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby59"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails59"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'minus-repudiandae-58' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 105], ["blog_id", 1], ["body", "Rerum et iure omnis voluptatem enim assumenda. Mollitia excepturi quidem voluptas dolor ab. Dolor rem hic molestiae voluptatibus dicta modi. Qui officiis amet. Quos id corrupti earum praesentium. Ullam consequatur distinctio quis praesentium. Sapiente doloribus vero voluptas quia inventore quia possimus."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Aut voluptates temporibus exercitationem qui sunt."], ["published", true], ["slug", "minus-repudiandae-58"], ["title", "Laborum laboriosam quae corporis earum."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test60' OR lower(name) = 'rspec60' OR lower(name) = 'ruby60' OR lower(name) = '#rails60') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test60' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails60"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quidem-neque-59' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 106], ["blog_id", 1], ["body", "Sed non quod. Voluptate vero et sapiente. Dolores perspiciatis repellat ut recusandae nam ea. Excepturi nulla enim reiciendis. Eum incidunt nisi est. Nesciunt dolore assumenda nostrum. Alias officiis vitae sunt eius."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Fuga ut."], ["published", true], ["slug", "quidem-neque-59"], ["title", "In iusto exercitationem dolor."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test61' OR lower(name) = 'rspec61' OR lower(name) = 'ruby61' OR lower(name) = '#rails61') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test61' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails61"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'reiciendis-ullam-60' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 107], ["blog_id", 1], ["body", "Velit nam voluptatem eos incidunt. Iure adipisci voluptas minus aut nihil. Est velit itaque magnam deleniti ut rerum eos. Aut adipisci qui consectetur odit ab soluta quam. Aut omnis corrupti et voluptate dolorem. Dolorum sed qui. Minus perspiciatis quod rem."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Veniam iusto."], ["published", true], ["slug", "reiciendis-ullam-60"], ["title", "Molestiae natus quod ut est magnam corrupti."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test62' OR lower(name) = 'rspec62' OR lower(name) = 'ruby62' OR lower(name) = '#rails62') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails62"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quisquam-corrupti-61' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 108], ["blog_id", 1], ["body", "Tempora ut quo rerum nam quo suscipit. Fugiat ratione mollitia quia corrupti tempora quo. Quia provident laudantium est illum ducimus voluptas. Tenetur placeat occaecati aliquam ut nisi. Beatae deleniti dolor et voluptatem alias. Maxime aspernatur quia sed quo iure. Omnis dolor hic ut et et minima maxime."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Voluptatum placeat corporis repudiandae officiis."], ["published", true], ["slug", "quisquam-corrupti-61"], ["title", "Odit enim voluptatem."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test63' OR lower(name) = 'rspec63' OR lower(name) = 'ruby63' OR lower(name) = '#rails63') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec63' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails63"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quas-molestiae-62' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 109], ["blog_id", 1], ["body", "Error pariatur modi culpa quia sunt laboriosam. Quia perferendis exercitationem et pariatur. Consequatur vitae dolores rerum facilis et aperiam recusandae. Et maxime ipsam nulla voluptatibus ea rerum accusamus. Et corporis nihil adipisci."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Sit voluptatem eaque commodi illo sapiente."], ["published", true], ["slug", "quas-molestiae-62"], ["title", "Eligendi et accusamus eos laboriosam ut et."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test64' OR lower(name) = 'rspec64' OR lower(name) = 'ruby64' OR lower(name) = '#rails64') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails64"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'vel-et-63' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 110], ["blog_id", 1], ["body", "Velit omnis quia voluptate quia qui tempore aut. Illum voluptatum quia porro quaerat. Voluptas cumque doloremque atque nihil hic dolorem. Sit aut eos. Aut nisi ratione dolores tempore voluptatem fugiat ut."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Rerum."], ["published", true], ["slug", "vel-et-63"], ["title", "Quasi dolores sequi mollitia dolorem harum."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test65' OR lower(name) = 'rspec65' OR lower(name) = 'ruby65' OR lower(name) = '#rails65') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails65"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ab-accusamus-64' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 111], ["blog_id", 1], ["body", "Veritatis expedita est praesentium aut. Praesentium veritatis enim voluptas officia reiciendis quo. Ducimus voluptas et. Cumque quaerat odio et ea labore dicta. Illum ad ipsa voluptatem. Sapiente commodi a suscipit aut tempore. Fuga sed quia quod itaque alias."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Distinctio blanditiis ut ducimus voluptates."], ["published", true], ["slug", "ab-accusamus-64"], ["title", "Aut provident tempora aut facilis."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test66' OR lower(name) = 'rspec66' OR lower(name) = 'ruby66' OR lower(name) = '#rails66') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby66' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails66"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quo-sit-65' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 112], ["blog_id", 1], ["body", "Quo iste inventore. Repellendus omnis vel. Reprehenderit excepturi corporis. At dicta aut eligendi et voluptatibus iste accusamus. Ipsa voluptas vero modi qui. Ut illum earum dolorem tenetur doloribus sint possimus."], ["created_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["excerpt", "Recusandae velit quis reprehenderit qui."], ["published", true], ["slug", "quo-sit-65"], ["title", "Sit voluptas est repudiandae et minus occaecati."], ["updated_at", Fri, 28 Dec 2012 04:51:32 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test67' OR lower(name) = 'rspec67' OR lower(name) = 'ruby67' OR lower(name) = '#rails67') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails67"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'temporibus-velit-66' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 113], ["blog_id", 1], ["body", "Incidunt quidem vel atque suscipit dolores fugit. Ullam aut sunt. In dolorem dignissimos. Maxime ullam sed rerum sint non consequatur aut. Dolorem cum id asperiores. Ab vel similique vero ut sint sunt. Consequuntur ut amet molestiae voluptates in est perspiciatis."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Quo natus."], ["published", true], ["slug", "temporibus-velit-66"], ["title", "Facere deserunt amet et."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test68' OR lower(name) = 'rspec68' OR lower(name) = 'ruby68' OR lower(name) = '#rails68') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails68"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'earum-quia-67' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 114], ["blog_id", 1], ["body", "Laborum voluptatibus omnis modi atque. Quaerat possimus quia similique provident harum in rerum. At adipisci aut et magnam aliquid. Sed omnis quae labore est quia nam. Perspiciatis laborum blanditiis dolores unde ut facilis qui."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Adipisci similique aut consequatur."], ["published", true], ["slug", "earum-quia-67"], ["title", "A ut possimus."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ut-quod-68' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 115], ["blog_id", 1], ["body", "Fugiat aut provident omnis ex adipisci ad velit. Totam at illo autem aut vitae unde et. Magni et recusandae doloremque unde cumque libero reiciendis. Facere porro aut officiis rerum expedita voluptas sequi. Omnis reiciendis iure. Voluptas illo est occaecati impedit."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Debitis saepe temporibus quidem doloremque voluptate."], ["published", true], ["slug", "ut-quod-68"], ["title", "Eaque doloremque eum reiciendis id perspiciatis corrupti illum."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_fd71bd3 ON posts_taggings_fd71bd3.taggable_id = almanac_posts.id AND posts_taggings_fd71bd3.taggable_type = 'Almanac::Post' AND posts_taggings_fd71bd3.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 116], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["description", "Nostrum dolores voluptatum. Velit debitis rerum nihil tenetur vel. Odio dolore nesciunt eligendi sunt consequatur neque."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quod excepturi."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ratione-nemo-69' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 117], ["blog_id", 1], ["body", "Amet qui et. Eaque quisquam et assumenda cum vero nostrum. Et rerum hic voluptatem omnis consequatur voluptatem optio. Nam eos maxime aliquid aut nemo libero. Cumque autem et omnis adipisci. Molestiae ut dignissimos deleniti quia qui facere eum."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Ut."], ["published", true], ["slug", "ratione-nemo-69"], ["title", "Et aliquid necessitatibus."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test69' OR lower(name) = 'rspec69' OR lower(name) = 'ruby69' OR lower(name) = '#rails69') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails69"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quia-voluptatem-70' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 118], ["blog_id", 1], ["body", "Tempora doloremque eum enim voluptatem at. Consequatur rem beatae unde. Odit sit culpa quasi voluptatem eligendi. Quisquam provident eius perferendis recusandae aspernatur omnis sit. Ut est sunt unde reiciendis enim exercitationem minus. Voluptates voluptatibus labore ratione. Est odit et."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Nisi et delectus cupiditate."], ["published", true], ["slug", "quia-voluptatem-70"], ["title", "Sint repellat iste minus et commodi."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test70' OR lower(name) = 'rspec70' OR lower(name) = 'ruby70' OR lower(name) = '#rails70') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test70' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails70"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eaque-quasi-71' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 119], ["blog_id", 1], ["body", "Iste saepe rerum iure quia. Quo dolores recusandae sint. Vel accusamus autem dolore numquam architecto. In et velit eveniet rerum nam quo deleniti. Repellendus in est consequuntur omnis inventore sit."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Iusto non sed."], ["published", true], ["slug", "eaque-quasi-71"], ["title", "Repellat adipisci alias voluptatem eum laborum repudiandae nemo."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test71' OR lower(name) = 'rspec71' OR lower(name) = 'ruby71' OR lower(name) = '#rails71') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails71"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-molestias-72' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 120], ["blog_id", 1], ["body", "Corrupti ea est eos odit velit illum ut. Sint rerum omnis qui cum sapiente sequi fuga. Sint incidunt est illum ex. Eveniet quia vitae sequi modi consectetur natus quis. Dolorem hic perferendis optio sapiente nam. Minus autem sed minima hic maiores qui repudiandae. Tempora est magnam nihil error odio fugiat autem."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Magni sint."], ["published", true], ["slug", "aut-molestias-72"], ["title", "Voluptas assumenda aspernatur laborum."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test72' OR lower(name) = 'rspec72' OR lower(name) = 'ruby72' OR lower(name) = '#rails72') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails72"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'doloribus-facere-73' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 121], ["blog_id", 1], ["body", "Assumenda sunt id dolorem placeat et. Illum nulla eius error. Adipisci corrupti officiis sed voluptas doloremque odit. Quia odio laudantium velit et sint magnam. Autem quaerat sint est. Et libero dolorum dolores at doloremque consequuntur voluptas."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Fuga itaque."], ["published", true], ["slug", "doloribus-facere-73"], ["title", "Et quia est error quia neque veritatis."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test73' OR lower(name) = 'rspec73' OR lower(name) = 'ruby73' OR lower(name) = '#rails73') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails73"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'vitae-ad-74' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 122], ["blog_id", 1], ["body", "Cumque ut nam est iusto veritatis dolor aperiam. Non consequatur sit exercitationem quod aut sint. Debitis quod sed et deserunt non ut iure. Et labore ut aspernatur. Vero rerum accusamus molestiae est aperiam dolor. Magni blanditiis aliquam libero vel modi."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Doloremque necessitatibus."], ["published", true], ["slug", "vitae-ad-74"], ["title", "Autem nobis sed."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test74' OR lower(name) = 'rspec74' OR lower(name) = 'ruby74' OR lower(name) = '#rails74') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test74' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails74"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quibusdam-id-75' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 123], ["blog_id", 1], ["body", "Possimus aperiam accusantium. Voluptates eligendi cupiditate ut rerum. Libero a praesentium id ut. Facere unde animi tenetur. Tempora voluptas incidunt sapiente non."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Sit."], ["published", true], ["slug", "quibusdam-id-75"], ["title", "Qui facilis hic eos nesciunt et cum consectetur."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test75' OR lower(name) = 'rspec75' OR lower(name) = 'ruby75' OR lower(name) = '#rails75') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test75' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails75"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'suscipit-temporibus-76' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 124], ["blog_id", 1], ["body", "Ex commodi explicabo. Consequatur error laboriosam labore. Totam eos eius et nobis. Aliquid assumenda aut qui sint alias. Inventore nostrum pariatur quis eveniet amet molestiae et."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Dolores et modi quis sed et."], ["published", true], ["slug", "suscipit-temporibus-76"], ["title", "Vero voluptatum recusandae porro error."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test76' OR lower(name) = 'rspec76' OR lower(name) = 'ruby76' OR lower(name) = '#rails76') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby76"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails76' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails76"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'necessitatibus-voluptas-77' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 125], ["blog_id", 1], ["body", "Ut praesentium quia. Minus saepe velit nihil sit incidunt. Minus ipsam laudantium dicta. Iste adipisci qui ut. A similique veniam esse optio earum sint sit. Accusantium quisquam possimus. Qui molestias et quo quis."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Delectus consequatur aut doloremque voluptas ut."], ["published", true], ["slug", "necessitatibus-voluptas-77"], ["title", "Sunt nihil quo blanditiis necessitatibus."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test77' OR lower(name) = 'rspec77' OR lower(name) = 'ruby77' OR lower(name) = '#rails77') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test77"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec77"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby77' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby77"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails77' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails77"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'officia-laboriosam-78' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 126], ["blog_id", 1], ["body", "Expedita corrupti totam et est sed. Eum est est nam quaerat illo ipsum. Est ipsam voluptatem nobis quaerat voluptatem eum hic. Voluptas id necessitatibus nesciunt adipisci. Soluta eum sed excepturi voluptates ea nostrum. Doloremque dolores magni sequi quibusdam iure aut modi. Possimus omnis sapiente consequatur architecto facilis autem."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Delectus eius velit."], ["published", true], ["slug", "officia-laboriosam-78"], ["title", "Ratione placeat nulla cumque doloribus minus."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test78' OR lower(name) = 'rspec78' OR lower(name) = 'ruby78' OR lower(name) = '#rails78') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test78"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec78"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby78"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails78' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails78"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'consectetur-eum-79' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 127], ["blog_id", 1], ["body", "Consequatur saepe error non. Molestias et quo sunt. Perspiciatis non pariatur voluptatem. Sed tempora suscipit. Totam quas nesciunt sunt dolor. Amet voluptatem sunt dolor odio."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Omnis veritatis facilis dolore aperiam perspiciatis."], ["published", false], ["slug", "consectetur-eum-79"], ["title", "Et reprehenderit sunt."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test79' OR lower(name) = 'rspec79' OR lower(name) = 'ruby79' OR lower(name) = '#rails79') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby79"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails79' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails79"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 42 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 42], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 43 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 43], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 44 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 44], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 45 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 45], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'placeat-eligendi-80' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 128], ["blog_id", 1], ["body", "Et corporis nihil corrupti nostrum voluptatum. Repellat laboriosam commodi omnis numquam eaque delectus distinctio. Rerum odio sunt occaecati quia fugiat. Sed eum vel omnis laborum delectus. Fugiat ut nesciunt voluptatem aut et. Natus in itaque maiores. Maiores sed doloremque facilis non sed."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Fugiat labore qui."], ["published", false], ["slug", "placeat-eligendi-80"], ["title", "Quae perspiciatis unde dignissimos sunt."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test80' OR lower(name) = 'rspec80' OR lower(name) = 'ruby80' OR lower(name) = '#rails80') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test80"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec80"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby80"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails80' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails80"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 46 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 46], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 47 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 47], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 48 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 48], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 49 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 49], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_f55c17f ON posts_taggings_f55c17f.taggable_id = almanac_posts.id AND posts_taggings_f55c17f.taggable_type = 'Almanac::Post' AND posts_taggings_f55c17f.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'kelsie_effertz@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "kelsie_effertz@example.com"], ["encrypted_password", "$2a$04$Ut1j8XvcpKo3ewgoRk4n0.5F91QgRfPXioop9Ka/IZ6CD2yIVi.D."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 130], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["description", "Nemo magnam saepe omnis dolorem reiciendis accusamus nobis. Quis aut alias. Voluptatum aut beatae."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quaerat omnis non enim quibusdam qui."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'alias-sunt-81' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 129], ["blog_id", 1], ["body", "Fugiat est et amet. Doloremque molestiae ut sit suscipit possimus dignissimos. Distinctio saepe rerum eos. Quod dignissimos est consequatur. Vitae et deleniti. Omnis unde dolor vitae quod. Iure deleniti impedit iste vel accusantium."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Sed accusamus."], ["published", true], ["slug", "alias-sunt-81"], ["title", "Repellendus aspernatur earum ratione assumenda."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test81' OR lower(name) = 'rspec81' OR lower(name) = 'ruby81' OR lower(name) = '#rails81') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test81"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec81"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby81"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails81' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails81"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_comments"  Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Emilie Doyle", "author_email"=>"doyle@example.net", "body"=>"Eum molestiae perferendis vitae qui asperiores pariatur. Sed qui ipsa. Quam laboriosam quis."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "doyle@example.net"], ["author_name", "Emilie Doyle"], ["body", "Eum molestiae perferendis vitae qui asperiores pariatur. Sed qui ipsa. Quam laboriosam quis."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/alias-sunt-81 Completed 302 Found in 8ms (ActiveRecord: 0.5ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"   (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'junius@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "junius@example.com"], ["encrypted_password", "$2a$04$RUCeDE6qqE41Dwx6VMxQ9.UlVZ6Zw.mL7PkHcDLgax2sfLj.KI/zC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 132], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["description", "Iste in quia pariatur dolores officiis odit earum. Nisi asperiores iure ea dolorum ab eos. Eos atque asperiores debitis fuga excepturi eum. Vero vel molestiae quis qui ab. Aut veritatis rerum possimus qui ea dolore natus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Occaecati dignissimos aperiam laborum vitae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dignissimos-voluptate-82' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 131], ["blog_id", 1], ["body", "Nisi aspernatur non. Occaecati eum qui a est placeat delectus debitis. Nostrum natus voluptatibus officiis debitis consectetur omnis. Fuga facere est. Soluta necessitatibus expedita."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Aliquid et quae assumenda."], ["published", true], ["slug", "dignissimos-voluptate-82"], ["title", "Sit nisi vitae consectetur."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test82' OR lower(name) = 'rspec82' OR lower(name) = 'ruby82' OR lower(name) = '#rails82') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test82"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec82"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby82"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails82' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails82"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Antonio Nitzsche", "author_email"=>"jarret@example.net", "body"=>"Reiciendis cum dolores ratione possimus rem est libero."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "jarret@example.net"], ["author_name", "Antonio Nitzsche"], ["body", "Reiciendis cum dolores ratione possimus rem est libero."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/dignissimos-voluptate-82 Completed 302 Found in 7ms (ActiveRecord: 0.5ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'kelsie_effertz@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "kelsie_effertz@example.com"], ["encrypted_password", "$2a$04$torysKuuhp9jmFjM37N3vu6qb4Y1zCSZfPCSR/5izDOHxuD/Yzp86"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 134], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["description", "Nemo magnam saepe omnis dolorem reiciendis accusamus nobis. Quis aut alias. Voluptatum aut beatae."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quaerat omnis non enim quibusdam qui."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'alias-sunt-83' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 133], ["blog_id", 1], ["body", "Fugiat est et amet. Doloremque molestiae ut sit suscipit possimus dignissimos. Distinctio saepe rerum eos. Quod dignissimos est consequatur. Vitae et deleniti. Omnis unde dolor vitae quod. Iure deleniti impedit iste vel accusantium."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Sed accusamus."], ["published", true], ["slug", "alias-sunt-83"], ["title", "Repellendus aspernatur earum ratione assumenda."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test83' OR lower(name) = 'rspec83' OR lower(name) = 'ruby83' OR lower(name) = '#rails83') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby83"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails83' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails83"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Emilie Doyle", "author_email"=>"doyle@example.net", "body"=>nil}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Redirected to http://test.host/almanac/alias-sunt-83 Completed 302 Found in 7ms (ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'haan@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "haan@example.org"], ["encrypted_password", "$2a$04$b8etkEW6lS/N9NVJKJ1XhOWjdKjs5CUUOcYFCQZc6/nnulTmrLboq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 136], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["description", "Omnis at est ut atque necessitatibus pariatur. Eum velit facilis saepe. Dolorem necessitatibus velit consequatur earum quia aut. Aut omnis sed dolores quis consequuntur natus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Est dolor dolores ea."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'doloremque-molestiae-84' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 135], ["blog_id", 1], ["body", "Architecto consequatur assumenda expedita harum doloremque. Libero laboriosam rem aspernatur. Maxime mollitia qui ex error. Provident autem consectetur ut neque placeat voluptatem. Error enim placeat praesentium dolores."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Est earum."], ["published", true], ["slug", "doloremque-molestiae-84"], ["title", "Tenetur non qui dolor exercitationem veniam ut dolorem."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test84' OR lower(name) = 'rspec84' OR lower(name) = 'ruby84' OR lower(name) = '#rails84') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec84"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby84"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails84' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails84"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#create as HTML Parameters: {"comment"=>{"author_name"=>"Mr. Germaine Gutkowski", "author_email"=>"fay@example.com", "body"=>"Et cum nam qui veniam expedita. Qui sint autem. Maxime dolores quam omnis doloribus at est mollitia."}, "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "fay@example.com"], ["author_name", "Mr. Germaine Gutkowski"], ["body", "Et cum nam qui veniam expedita. Qui sint autem. Maxime dolores quam omnis doloribus at est mollitia."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/doloremque-molestiae-84 Completed 302 Found in 8ms (ActiveRecord: 0.5ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'kelsie_effertz@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "kelsie_effertz@example.com"], ["encrypted_password", "$2a$04$6eNFHQppPuNl7nURybSyVe6IlN5vsz7EnJ1Go/lwQg4.RgZGEmDTe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 138], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["description", "Nemo magnam saepe omnis dolorem reiciendis accusamus nobis. Quis aut alias. Voluptatum aut beatae."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quaerat omnis non enim quibusdam qui."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'alias-sunt-85' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 137], ["blog_id", 1], ["body", "Fugiat est et amet. Doloremque molestiae ut sit suscipit possimus dignissimos. Distinctio saepe rerum eos. Quod dignissimos est consequatur. Vitae et deleniti. Omnis unde dolor vitae quod. Iure deleniti impedit iste vel accusantium."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Sed accusamus."], ["published", true], ["slug", "alias-sunt-85"], ["title", "Repellendus aspernatur earum ratione assumenda."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test85' OR lower(name) = 'rspec85' OR lower(name) = 'ruby85' OR lower(name) = '#rails85') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec85"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby85"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails85' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails85"]] ActsAsTaggableOn::Tag Load (39.4ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "doyle@example.net"], ["author_name", "Emilie Doyle"], ["body", "Eum molestiae perferendis vitae qui asperiores pariatur. Sed qui ipsa. Quam laboriosam quis."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_comments" Processing by Almanac::CommentsController#destroy as HTML Parameters: {"id"=>"1", "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "almanac_comments" WHERE "almanac_comments"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/1 Completed 302 Found in 8ms (ActiveRecord: 0.5ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_comments"  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'junius@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "junius@example.com"], ["encrypted_password", "$2a$04$0Qz2CF5GdLoUcE9zsJPAfOhuPwVeUDhlpGaOZ447Qjl9cwQkhZG3C"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 140], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["description", "Iste in quia pariatur dolores officiis odit earum. Nisi asperiores iure ea dolorum ab eos. Eos atque asperiores debitis fuga excepturi eum. Vero vel molestiae quis qui ab. Aut veritatis rerum possimus qui ea dolore natus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Occaecati dignissimos aperiam laborum vitae."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dignissimos-voluptate-86' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 139], ["blog_id", 1], ["body", "Nisi aspernatur non. Occaecati eum qui a est placeat delectus debitis. Nostrum natus voluptatibus officiis debitis consectetur omnis. Fuga facere est. Soluta necessitatibus expedita."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Aliquid et quae assumenda."], ["published", true], ["slug", "dignissimos-voluptate-86"], ["title", "Sit nisi vitae consectetur."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test86' OR lower(name) = 'rspec86' OR lower(name) = 'ruby86' OR lower(name) = '#rails86') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test86"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec86"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby86"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails86' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails86"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 1 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "jarret@example.net"], ["author_name", "Antonio Nitzsche"], ["body", "Reiciendis cum dolores ratione possimus rem est libero."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 1], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#destroy as HTML Parameters: {"id"=>"1", "post_id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) DELETE FROM "almanac_comments" WHERE "almanac_comments"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/1 Completed 302 Found in 6ms (ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'kelsie_effertz@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "kelsie_effertz@example.com"], ["encrypted_password", "$2a$04$ygg2nLF7zowKbHFs1LWrOeJYWHdR.gsPaH0n9vFwcLgp6uht3k8dG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 142], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["description", "Nemo magnam saepe omnis dolorem reiciendis accusamus nobis. Quis aut alias. Voluptatum aut beatae."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quaerat omnis non enim quibusdam qui."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'alias-sunt-87' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 141], ["blog_id", 1], ["body", "Fugiat est et amet. Doloremque molestiae ut sit suscipit possimus dignissimos. Distinctio saepe rerum eos. Quod dignissimos est consequatur. Vitae et deleniti. Omnis unde dolor vitae quod. Iure deleniti impedit iste vel accusantium."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Sed accusamus."], ["published", true], ["slug", "alias-sunt-87"], ["title", "Repellendus aspernatur earum ratione assumenda."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test87' OR lower(name) = 'rspec87' OR lower(name) = 'ruby87' OR lower(name) = '#rails87') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby87"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails87' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails87"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'corporis-voluptas-88' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 143], ["blog_id", 1], ["body", "Eius facilis tempora quaerat. Autem aperiam eum dolorem commodi voluptatem. Eos consequuntur numquam. Illum totam asperiores accusantium voluptatum consequatur. Ab facilis maxime ipsa."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Magnam."], ["published", true], ["slug", "corporis-voluptas-88"], ["title", "Quo quam labore vel tempore."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test88' OR lower(name) = 'rspec88' OR lower(name) = 'ruby88' OR lower(name) = '#rails88') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test88' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby88"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails88' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails88"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "queenie@example.com"], ["author_name", "Carli Wehner"], ["body", "Veniam hic tenetur ut. Tempora eum nostrum. Illo voluptate quam."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "antonietta@example.org"], ["author_name", "Miss Jordy Bode"], ["body", "Nostrum sunt esse eveniet occaecati. Sunt quibusdam ut consequuntur quis numquam."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "nick_grimes@example.net"], ["author_name", "Linnie Zemlak"], ["body", "Expedita cupiditate ut sint."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "ramona@example.org"], ["author_name", "Lupe Mertz"], ["body", "Qui sint autem. Maxime dolores quam omnis doloribus at est mollitia. Dolores numquam asperiores et repellendus labore consequatur."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "joaquin@example.org"], ["author_name", "Fritz Carroll"], ["body", "Minus et architecto doloribus. Nemo eos at. Consequatur autem quidem et accusamus asperiores."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "beau@example.org"], ["author_name", "Elian Corkery"], ["body", "Qui sed architecto incidunt dolore laboriosam porro modi. Quo repudiandae eum molestias dolorem. Consequatur adipisci harum."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "francis@example.net"], ["author_name", "Dr. Austyn Nienow"], ["body", "Sunt impedit qui est debitis neque sed quia. Aspernatur sint cupiditate dolorum dicta. Rerum qui et temporibus."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "bianka@example.net"], ["author_name", "Quinton Larkin"], ["body", "Voluptas eos porro doloribus officia. Optio et consequatur reprehenderit totam praesentium aut dolore. Nisi ipsum minima qui sequi dolor."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "gay_mertz@example.net"], ["author_name", "Jeanne Swift"], ["body", "Magnam alias sit maxime ullam quo delectus. Quas recusandae perferendis nisi a quod."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "stewart_schiller@example.net"], ["author_name", "Elouise Zboncak"], ["body", "Corporis consequuntur quaerat architecto voluptatem et quas."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 2 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "corene_kiehn@example.org"], ["author_name", "Miss Anne Upton"], ["body", "Dolorem enim eos quia quis ea rem magni. Sunt et beatae."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 2], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 2 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "ruben@example.net"], ["author_name", "Darrick Carter"], ["body", "Quos minima omnis aut. Maxime dolorem magni architecto quidem iusto."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 2], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 2 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "gina@example.org"], ["author_name", "Eva Rohan"], ["body", "Ut corporis ullam id tempora quia. Quia minus cupiditate dolore voluptatem voluptates laudantium. Possimus consequatur fugiat et et."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 2], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 2 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "laurine.osinski@example.com"], ["author_name", "Dante Spencer"], ["body", "Tempora magnam quaerat qui. Cumque ullam aut quis."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 2], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 2 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "georgianna.padberg@example.net"], ["author_name", "Krystina Rutherford"], ["body", "Reprehenderit consequatur numquam iusto voluptatem. Fugit cupiditate ut quia. Et est autem enim quia."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 2], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#spam as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Comment Load (0.1ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 9ms (Views: 3.3ms | ActiveRecord: 0.3ms) Almanac::Comment Load (0.2ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."spam" = 't' ORDER BY id ASC  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'erika@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "erika@example.com"], ["encrypted_password", "$2a$04$EUrg7n2FI0B/lmVD/d3xOOL66wun7kxgk8rH82YKxW6k8d9WlqTRq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 145], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["description", "Et necessitatibus ad recusandae. Qui recusandae laboriosam. Odio et aut unde neque."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sit et dolor reprehenderit enim."], ["twitter", nil], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolor-et-89' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 144], ["blog_id", 1], ["body", "Voluptatem aperiam laboriosam iusto occaecati non. Doloribus voluptatem minima. Quia autem temporibus est eligendi unde. Et accusamus eveniet. Delectus officiis nihil. Provident ut voluptas officiis qui qui."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Sunt quibusdam."], ["published", true], ["slug", "dolor-et-89"], ["title", "Omnis occaecati velit."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test89' OR lower(name) = 'rspec89' OR lower(name) = 'ruby89' OR lower(name) = '#rails89') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test89' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test89"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec89' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec89"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby89' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby89"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails89' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails89"]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'minima-saepe-90' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 146], ["blog_id", 1], ["body", "Ratione dolorum harum enim dolor id. Sapiente quis non sint fuga. Unde qui soluta. Ut qui amet et ullam a mollitia. Non sint reiciendis omnis consequatur quia libero magni."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["excerpt", "Vitae tenetur aperiam."], ["published", true], ["slug", "minima-saepe-90"], ["title", "Eveniet ipsa sunt animi tempore laudantium facere."], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["written_at", Thu, 27 Dec 2012]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test90' OR lower(name) = 'rspec90' OR lower(name) = 'ruby90' OR lower(name) = '#rails90') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test90' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test90"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec90' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec90"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby90' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby90"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails90' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails90"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "pearline_gutmann@example.net"], ["author_name", "Arch Hodkiewicz"], ["body", "Aperiam id cumque."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "ilene_barrows@example.com"], ["author_name", "Ken Mertz"], ["body", "Fugiat omnis quo nihil eos necessitatibus corrupti. Corporis error est sint molestiae."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "jayne@example.com"], ["author_name", "Watson Schamberger"], ["body", "Voluptatibus animi beatae neque quaerat."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "freddie_okeefe@example.org"], ["author_name", "Mr. Giovanny Stokes"], ["body", "Consequatur cum accusamus possimus sint eum. Fugit facere sed. Deleniti a id et quos beatae."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "al@example.org"], ["author_name", "Jazmyn Pfannerstill"], ["body", "Ut vitae ducimus reiciendis dicta qui accusamus. Eius minima perferendis perspiciatis eos commodi. Quia enim ipsam."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "jameson@example.net"], ["author_name", "Ethelyn Herzog"], ["body", "Et autem optio dolorum. Dolorem praesentium minus saepe nihil et quia. Autem minima enim odit qui et dolor saepe."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "rigoberto@example.org"], ["author_name", "Dr. Elda Prosacco"], ["body", "Consequatur est laudantium et et quasi minima quos. Et unde inventore libero sint. Ut reprehenderit assumenda similique quae atque."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "ethan_kiehn@example.net"], ["author_name", "Palma Emard"], ["body", "Consequatur sint sit in esse dignissimos non eius."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "mathew@example.org"], ["author_name", "Lupe Kuvalis"], ["body", "Occaecati qui corrupti voluptatem repudiandae omnis."], ["created_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "abel@example.net"], ["author_name", "Timmothy Bradtke"], ["body", "Neque accusantium doloremque atque ex fugiat dolorem quis."], ["created_at", Fri, 28 Dec 2012 04:51:34 UTC +00:00], ["post_id", 2], ["spam", false], ["updated_at", Fri, 28 Dec 2012 04:51:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 2 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "robert@example.com"], ["author_name", "Alfonso Effertz"], ["body", "Possimus ad voluptatibus."], ["created_at", Fri, 28 Dec 2012 04:51:34 UTC +00:00], ["post_id", 2], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:51:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 2 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "robb_klein@example.com"], ["author_name", "Ryleigh Stark"], ["body", "Perferendis molestias temporibus aut. Exercitationem enim amet tempore. Sed molestiae enim at voluptatem quod."], ["created_at", Fri, 28 Dec 2012 04:51:34 UTC +00:00], ["post_id", 2], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:51:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 2 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "jovany@example.com"], ["author_name", "Virgil Lockman DVM"], ["body", "Non laudantium harum doloremque fugit culpa. Impedit expedita ex voluptates."], ["created_at", Fri, 28 Dec 2012 04:51:34 UTC +00:00], ["post_id", 2], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:51:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 2 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "rodrigo.larkin@example.org"], ["author_name", "Leslie Kub"], ["body", "Quisquam officiis et magnam explicabo deleniti. Voluptatum soluta delectus."], ["created_at", Fri, 28 Dec 2012 04:51:34 UTC +00:00], ["post_id", 2], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:51:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = 2 ORDER BY written_at DESC, id DESC LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_comments" ("author_email", "author_name", "body", "created_at", "post_id", "spam", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["author_email", "zane@example.net"], ["author_name", "Anjali Jewess"], ["body", "Aut ullam minima corporis excepturi. Fugiat molestiae non unde aliquam reprehenderit cum. Et porro non velit consequatur nesciunt."], ["created_at", Fri, 28 Dec 2012 04:51:34 UTC +00:00], ["post_id", 2], ["spam", true], ["updated_at", Fri, 28 Dec 2012 04:51:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::CommentsController#spam as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Comment Load (0.0ms) SELECT "almanac_comments".* FROM "almanac_comments" WHERE "almanac_comments"."id" = ? ORDER BY id ASC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 7ms (Views: 1.6ms | ActiveRecord: 0.2ms)  (0.5ms) rollback transaction Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml  (2.6ms) DELETE FROM "users";  (0.6ms) DELETE FROM sqlite_sequence where name = 'users';  (1.2ms) DELETE FROM "almanac_posts";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_posts';  (1.3ms) DELETE FROM "almanac_images";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_images';  (1.5ms) DELETE FROM "tags";  (0.1ms) DELETE FROM sqlite_sequence where name = 'tags';  (0.7ms) DELETE FROM "taggings";  (0.1ms) DELETE FROM sqlite_sequence where name = 'taggings';  (0.8ms) DELETE FROM "almanac_comments";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_comments';  (1.0ms) DELETE FROM "almanac_blogs";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_blogs';  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (4.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'leon_marvin@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (2.6ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:23:38 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "leon_marvin@example.com"], ["encrypted_password", "$2a$04$WHuLvFVM8celu4JF25OlQOVZI8sDNdzZXJKUNTcjED9NUV3ZiYXPy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:23:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:38 UTC +00:00], ["description", "Eos esse voluptas et ut. Quia velit sint. Magni voluptas corrupti blanditiis corporis. Fugiat modi deleniti iste cum molestiae dolor. Neque nisi velit temporibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Rerum quisquam et non beatae."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:38 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'rem-autem-1' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 2], ["blog_id", 1], ["body", "Expedita sequi nostrum est dicta nesciunt tenetur nisi. Optio qui molestiae reiciendis. Sed illo aut occaecati delectus deleniti. Et reiciendis aut voluptatem cum ut quae expedita. Et quos nisi dolorem. Laboriosam aliquam est est aut vitae tenetur."], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["excerpt", "Delectus doloribus soluta facilis sit ex."], ["published", false], ["slug", "rem-autem-1"], ["title", "Est delectus non explicabo ab vel veniam laboriosam."], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test1' OR lower(name) = 'rspec1' OR lower(name) = 'ruby1' OR lower(name) = '#rails1') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby1"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails1' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails1"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptatem-reiciendis-2' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 3], ["blog_id", 1], ["body", "Sunt eos magni possimus error expedita soluta officia. Alias voluptas quaerat dolorum enim dolore voluptas aliquam. Incidunt sed id velit. Qui eius corporis culpa qui est voluptatibus. Illum rerum mollitia ad laudantium ullam."], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["excerpt", "Animi minima doloremque ea."], ["published", false], ["slug", "voluptatem-reiciendis-2"], ["title", "Quam nisi ad veniam ratione quia vel."], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test2' OR lower(name) = 'rspec2' OR lower(name) = 'ruby2' OR lower(name) = '#rails2') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test2' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test2"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec2"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby2"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails2' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails2"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'vel-amet-3' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 4], ["blog_id", 1], ["body", "A accusantium amet. Sed deserunt voluptas repellat. Qui molestias quam laudantium excepturi quibusdam et beatae. Reiciendis et ut cum. Necessitatibus consequuntur provident adipisci rerum odit quibusdam rerum."], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["excerpt", "Sunt aut."], ["published", false], ["slug", "vel-amet-3"], ["title", "Perspiciatis qui illum nihil eaque nostrum sit cum."], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test3' OR lower(name) = 'rspec3' OR lower(name) = 'ruby3' OR lower(name) = '#rails3') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby3"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails3' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails3"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 500 Internal Server Error in 4ms  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'haven@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "haven@example.com"], ["encrypted_password", "$2a$04$rzLRDhHw/QG2qQNJLf6hn.tE3YpDzWlJhgLbS85Zhs7VsDTt9nxma"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 5], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["description", "Odio rerum et. Et mollitia minima animi. Accusantium sed voluptatem et dignissimos quo voluptas eum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Molestiae in sapiente."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-qui-4' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 6], ["blog_id", 1], ["body", "Quo laboriosam eius voluptas deserunt. Aliquam earum sed. Eaque consequatur quia minima illo. Non dignissimos dolor sapiente amet debitis. Iusto odio culpa. Consequuntur quia perferendis ut ipsum alias. Doloremque voluptates ab veritatis qui."], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["excerpt", "Voluptatem ea quia."], ["published", true], ["slug", "et-qui-4"], ["title", "Sint qui et quibusdam neque aut perspiciatis."], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test4' OR lower(name) = 'rspec4' OR lower(name) = 'ruby4' OR lower(name) = '#rails4') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby4"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails4' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails4"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolore-provident-5' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 7], ["blog_id", 1], ["body", "Omnis nostrum consequuntur. Dolor ipsum ut. Saepe illo aperiam quos dolores voluptatem quidem ut. Ipsam ullam aut. Nobis ipsa cum libero ut mollitia. Sequi sunt porro sit dolorum."], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["excerpt", "Enim quisquam vero ipsum vitae."], ["published", true], ["slug", "dolore-provident-5"], ["title", "Nostrum enim sed tenetur aut."], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test5' OR lower(name) = 'rspec5' OR lower(name) = 'ruby5' OR lower(name) = '#rails5') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test5' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails5"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eveniet-est-6' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 8], ["blog_id", 1], ["body", "Ea commodi est aut. Laudantium voluptatem non. Quis voluptates voluptatem numquam ut fugiat. Exercitationem optio dolor laborum totam ducimus. Ea mollitia odio consectetur dolorem officia. Animi voluptatem ex magni architecto odio ipsum ut. Sequi voluptatem ea qui totam minus quia."], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["excerpt", "Id molestiae dolorum."], ["published", true], ["slug", "eveniet-est-6"], ["title", "Omnis perferendis libero voluptate at commodi quis est."], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test6' OR lower(name) = 'rspec6' OR lower(name) = 'ruby6' OR lower(name) = '#rails6') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test6"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec6"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby6"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails6' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails6"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'id-culpa-7' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 9], ["blog_id", 1], ["body", "Eius ut rerum est. Voluptatem adipisci in quis necessitatibus pariatur quaerat. Beatae voluptatem suscipit expedita nostrum. Optio provident tempora molestiae ut quo voluptatum magni. Et voluptas nesciunt occaecati ut veniam. Dolor enim impedit consequatur non commodi eveniet inventore."], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["excerpt", "Quam et."], ["published", true], ["slug", "id-culpa-7"], ["title", "Nulla dolores pariatur aut accusantium reiciendis provident."], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test7' OR lower(name) = 'rspec7' OR lower(name) = 'ruby7' OR lower(name) = '#rails7') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby7"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails7' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails7"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'iusto-assumenda-8' LIMIT 1 SQL (35.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 10], ["blog_id", 1], ["body", "Eveniet nam quisquam doloremque quidem. Ipsam laborum ratione ad iure voluptatem numquam earum. Beatae ut deserunt praesentium voluptas quasi. Rerum at dolor. Iste quia quidem velit. In et praesentium temporibus nobis itaque beatae. Saepe maiores consectetur tempore cum quis."], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["excerpt", "Quia nemo harum qui et."], ["published", true], ["slug", "iusto-assumenda-8"], ["title", "Ea quaerat sunt inventore labore."], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test8' OR lower(name) = 'rspec8' OR lower(name) = 'ruby8' OR lower(name) = '#rails8') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test8' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails8"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 500 Internal Server Error in 4ms  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'hope_dare@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "hope_dare@example.net"], ["encrypted_password", "$2a$04$AbS8LGhFmnN09IICCaaV0e4DigWoERePjU17zV5951FODNRFEVjEC"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 11], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["description", "Eligendi laborum fugiat sed aut eaque. Quia ipsam placeat id delectus quidem tenetur. Sint voluptatem omnis blanditiis perspiciatis. Sunt magni necessitatibus pariatur."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Aut itaque iure sit aperiam."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 500 Internal Server Error in 4ms  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ashtyn_hermiston@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ashtyn_hermiston@example.com"], ["encrypted_password", "$2a$04$3gAJbPGB.Nwl28zO9Jr6JuX9u2Ke.Ey7yMknvwAzaoswoz3p1Plr."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 12], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["description", "Eos esse voluptas et ut. Quia velit sint. Magni voluptas corrupti blanditiis corporis. Fugiat modi deleniti iste cum molestiae dolor. Neque nisi velit temporibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Nihil quis et."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'rem-autem-9' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 13], ["blog_id", 1], ["body", "Expedita sequi nostrum est dicta nesciunt tenetur nisi. Optio qui molestiae reiciendis. Sed illo aut occaecati delectus deleniti. Et reiciendis aut voluptatem cum ut quae expedita. Et quos nisi dolorem. Laboriosam aliquam est est aut vitae tenetur."], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["excerpt", "Delectus doloribus soluta facilis sit ex."], ["published", true], ["slug", "rem-autem-9"], ["title", "Est delectus non explicabo ab vel veniam laboriosam."], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test9' OR lower(name) = 'rspec9' OR lower(name) = 'ruby9' OR lower(name) = '#rails9') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test9"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec9"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby9"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails9"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Completed 500 Internal Server Error in 7ms  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'kelton.toy@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "kelton.toy@example.com"], ["encrypted_password", "$2a$04$YU7c45vAZhyI1xLjbkSoW.0h8Mwh3cv0lCGIz3QDVL5cOT2fZLnIy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 14], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["description", "Odit perferendis sed. Et deleniti illum qui quae sunt voluptatem. Alias tempore numquam enim nobis consequatur ex. Nostrum voluptates quasi totam voluptatem quis numquam in. Ipsa molestiae maiores quibusdam asperiores aspernatur reprehenderit sed."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Veritatis vitae non."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aliquid-adipisci-10' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 15], ["blog_id", 1], ["body", "Magnam et tempore voluptatibus dolore ea. Sit placeat aut qui dolores sequi tempora. Aspernatur rerum inventore officia modi. Odit eveniet consequatur vel. Consequatur minima provident voluptate hic consequatur laudantium. Debitis minima quia. Odit et cumque."], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["excerpt", "Debitis quasi dolorem explicabo cum amet."], ["published", true], ["slug", "aliquid-adipisci-10"], ["title", "Hic autem temporibus consequatur nemo sunt est."], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test10' OR lower(name) = 'rspec10' OR lower(name) = 'ruby10' OR lower(name) = '#rails10') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test10"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec10"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby10"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails10' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails10"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Completed 500 Internal Server Error in 6ms  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ashtyn_hermiston@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ashtyn_hermiston@example.com"], ["encrypted_password", "$2a$04$fE03rmJ90mRPOjAqfYymHecUFo79lNyacB3cXv7SKW5iinQ/bND0m"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 16], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["description", "Eos esse voluptas et ut. Quia velit sint. Magni voluptas corrupti blanditiis corporis. Fugiat modi deleniti iste cum molestiae dolor. Neque nisi velit temporibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Nihil quis et."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'rem-autem-11' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 17], ["blog_id", 1], ["body", "Expedita sequi nostrum est dicta nesciunt tenetur nisi. Optio qui molestiae reiciendis. Sed illo aut occaecati delectus deleniti. Et reiciendis aut voluptatem cum ut quae expedita. Et quos nisi dolorem. Laboriosam aliquam est est aut vitae tenetur."], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["excerpt", "Delectus doloribus soluta facilis sit ex."], ["published", true], ["slug", "rem-autem-11"], ["title", "Est delectus non explicabo ab vel veniam laboriosam."], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test11' OR lower(name) = 'rspec11' OR lower(name) = 'ruby11' OR lower(name) = '#rails11') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test11"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec11"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby11"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails11' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails11"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptatem-reiciendis-12' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 18], ["blog_id", 1], ["body", "Sunt eos magni possimus error expedita soluta officia. Alias voluptas quaerat dolorum enim dolore voluptas aliquam. Incidunt sed id velit. Qui eius corporis culpa qui est voluptatibus. Illum rerum mollitia ad laudantium ullam."], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["excerpt", "Animi minima doloremque ea."], ["published", true], ["slug", "voluptatem-reiciendis-12"], ["title", "Quam nisi ad veniam ratione quia vel."], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test12' OR lower(name) = 'rspec12' OR lower(name) = 'ruby12' OR lower(name) = '#rails12') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test12' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test12"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec12"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby12"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails12' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails12"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'vel-amet-13' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 19], ["blog_id", 1], ["body", "A accusantium amet. Sed deserunt voluptas repellat. Qui molestias quam laudantium excepturi quibusdam et beatae. Reiciendis et ut cum. Necessitatibus consequuntur provident adipisci rerum odit quibusdam rerum."], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["excerpt", "Sunt aut."], ["published", true], ["slug", "vel-amet-13"], ["title", "Perspiciatis qui illum nihil eaque nostrum sit cum."], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test13' OR lower(name) = 'rspec13' OR lower(name) = 'ruby13' OR lower(name) = '#rails13') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby13"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails13' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails13"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sit-perspiciatis-14' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 20], ["blog_id", 1], ["body", "Quia eos vitae qui enim ut. Esse magnam hic. Mollitia voluptatem delectus quia minima qui in id. Nulla dolor suscipit voluptates ut quasi qui. Id ipsa aut qui repudiandae voluptates quasi pariatur. Exercitationem totam et fugiat atque soluta quia. Autem ex sed et consectetur vel."], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["excerpt", "Iure dolores illo ullam perspiciatis facilis."], ["published", true], ["slug", "sit-perspiciatis-14"], ["title", "Ut quia est architecto."], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test14' OR lower(name) = 'rspec14' OR lower(name) = 'ruby14' OR lower(name) = '#rails14') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test14"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec14"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby14"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails14"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sequi-aperiam-15' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 21], ["blog_id", 1], ["body", "Ratione repellat reprehenderit. Adipisci eos eveniet excepturi voluptate eos eum. Vel dolorem dolorum excepturi architecto. Ut consequatur est cum est. Vitae asperiores quidem nihil ducimus et sint esse. Ab quo quisquam nam nulla."], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["excerpt", "Impedit corporis."], ["published", true], ["slug", "sequi-aperiam-15"], ["title", "Officiis voluptas laborum."], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test15' OR lower(name) = 'rspec15' OR lower(name) = 'ruby15' OR lower(name) = '#rails15') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test15"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec15"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby15"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails15"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Parameters: {"tag_name"=>"common"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 500 Internal Server Error in 4ms  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'chanel_stracke@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "chanel_stracke@example.com"], ["encrypted_password", "$2a$04$vLnbBT9SagXYGodTJblJYuE8T39V.cdHFX0y4Ob7FBHQxkYnTdw.u"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 22], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["description", "Illo molestiae beatae. Veritatis voluptate fuga iste ipsam. Voluptatem et omnis nulla tempora blanditiis perferendis sed. Provident explicabo itaque animi sed aliquam maxime."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Amet voluptatem deserunt illo neque doloribus."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 500 Internal Server Error in 4ms  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ashtyn_hermiston@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ashtyn_hermiston@example.com"], ["encrypted_password", "$2a$04$XI4dn9yHETR55V42mHQbzurGcM5cMXhd.YnX8D9T.2q.oPGYqJtYq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 23], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["description", "Eos esse voluptas et ut. Quia velit sint. Magni voluptas corrupti blanditiis corporis. Fugiat modi deleniti iste cum molestiae dolor. Neque nisi velit temporibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Nihil quis et."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'rem-autem-16' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 24], ["blog_id", 1], ["body", "Expedita sequi nostrum est dicta nesciunt tenetur nisi. Optio qui molestiae reiciendis. Sed illo aut occaecati delectus deleniti. Et reiciendis aut voluptatem cum ut quae expedita. Et quos nisi dolorem. Laboriosam aliquam est est aut vitae tenetur."], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["excerpt", "Delectus doloribus soluta facilis sit ex."], ["published", true], ["slug", "rem-autem-16"], ["title", "Est delectus non explicabo ab vel veniam laboriosam."], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test16' OR lower(name) = 'rspec16' OR lower(name) = 'ruby16' OR lower(name) = '#rails16') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test16"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec16"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby16"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails16"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Testz", "slug"=>"mollitia-error-17", "excerpt"=>"Et et illo.", "body"=>"Autem enim soluta odio sequi. Harum in aut rerum asperiores unde. Architecto alias sit fuga assumenda voluptatibus. Sint cum quo eveniet. Quam est porro officiis qui ut dolorem provident.", "published"=>true, "tag_list"=>"common,test17,rspec17,ruby17,#rails17", "author_id"=>"25", "written_at"=>"2013-01-14"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Completed 500 Internal Server Error in 7ms  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jayme@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jayme@example.com"], ["encrypted_password", "$2a$04$ocsHKoEcXoM9grQnwhbgReMPAh.ljcSoMwrb1VbWelLZbf/0WSMc6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 26], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["description", "Debitis quasi dolorem explicabo cum amet quas quos. Impedit quia mollitia voluptate amet dolores. Nobis ut deserunt at sapiente inventore. Quisquam repudiandae voluptatem est."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Omnis iure omnis ut."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'velit-voluptatem-18' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 27], ["blog_id", 1], ["body", "Quas ea aliquid. Nihil necessitatibus eius. Quia officia numquam ut. Voluptatem repellat aut. Aspernatur ratione et sit."], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["excerpt", "Consequatur minima provident voluptate hic."], ["published", true], ["slug", "velit-voluptatem-18"], ["title", "Non omnis consequatur voluptatem."], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test18' OR lower(name) = 'rspec18' OR lower(name) = 'ruby18' OR lower(name) = '#rails18') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test18' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test18"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec18' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec18"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby18' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby18"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails18' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails18"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Eligendi deleniti quo quo.", "slug"=>"corrupti-veritatis-19", "excerpt"=>"Est vitae nobis magnam ex excepturi.", "body"=>"In id quae aut. Aut placeat voluptatem et optio. Magnam dolore provident illum sint repellat. Ut officia aut pariatur. Consequuntur ab cum rerum dolorum quia quisquam voluptas. Laudantium velit sed rerum dicta. Esse saepe ut quibusdam nostrum ipsam.", "published"=>true, "tag_list"=>"common,test19,rspec19,ruby19,#rails19", "author_id"=>"28", "written_at"=>"2013-01-14"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Completed 500 Internal Server Error in 6ms  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ashtyn_hermiston@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ashtyn_hermiston@example.com"], ["encrypted_password", "$2a$04$1DJ/B6oG4gYOBxzUKC5KxOW5trCFEqre4k/KhbiJKV2TaRu1SDy6q"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 29], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["description", "Eos esse voluptas et ut. Quia velit sint. Magni voluptas corrupti blanditiis corporis. Fugiat modi deleniti iste cum molestiae dolor. Neque nisi velit temporibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Nihil quis et."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'rem-autem-20' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 30], ["blog_id", 1], ["body", "Expedita sequi nostrum est dicta nesciunt tenetur nisi. Optio qui molestiae reiciendis. Sed illo aut occaecati delectus deleniti. Et reiciendis aut voluptatem cum ut quae expedita. Et quos nisi dolorem. Laboriosam aliquam est est aut vitae tenetur."], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["excerpt", "Delectus doloribus soluta facilis sit ex."], ["published", true], ["slug", "rem-autem-20"], ["title", "Est delectus non explicabo ab vel veniam laboriosam."], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test20' OR lower(name) = 'rspec20' OR lower(name) = 'ruby20' OR lower(name) = '#rails20') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test20' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test20"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec20' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec20"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby20' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby20"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails20' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails20"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"mollitia-error-21", "excerpt"=>"Et et illo.", "body"=>"Autem enim soluta odio sequi. Harum in aut rerum asperiores unde. Architecto alias sit fuga assumenda voluptatibus. Sint cum quo eveniet. Quam est porro officiis qui ut dolorem provident.", "published"=>true, "tag_list"=>"common,test21,rspec21,ruby21,#rails21", "author_id"=>"31", "written_at"=>"2013-01-14"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Completed 500 Internal Server Error in 6ms  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jayme@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jayme@example.com"], ["encrypted_password", "$2a$04$IQKWGkD98vbvigfKueeyNuplZbRYivGcJlMJxtHYNb9aDSb8981Bq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 32], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["description", "Debitis quasi dolorem explicabo cum amet quas quos. Impedit quia mollitia voluptate amet dolores. Nobis ut deserunt at sapiente inventore. Quisquam repudiandae voluptatem est."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Omnis iure omnis ut."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'velit-voluptatem-22' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 33], ["blog_id", 1], ["body", "Quas ea aliquid. Nihil necessitatibus eius. Quia officia numquam ut. Voluptatem repellat aut. Aspernatur ratione et sit."], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["excerpt", "Consequatur minima provident voluptate hic."], ["published", true], ["slug", "velit-voluptatem-22"], ["title", "Non omnis consequatur voluptatem."], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test22' OR lower(name) = 'rspec22' OR lower(name) = 'ruby22' OR lower(name) = '#rails22') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test22"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec22"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby22"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails22"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"voluptatibus-qui-23", "excerpt"=>"Harum quas eligendi incidunt.", "body"=>"Consequuntur suscipit dignissimos. In id quae aut. Aut placeat voluptatem et optio. Magnam dolore provident illum sint repellat. Ut officia aut pariatur. Consequuntur ab cum rerum dolorum quia quisquam voluptas.", "published"=>true, "tag_list"=>"common,test23,rspec23,ruby23,#rails23", "author_id"=>"34", "written_at"=>"2013-01-14"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Completed 500 Internal Server Error in 6ms  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ashtyn_hermiston@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ashtyn_hermiston@example.com"], ["encrypted_password", "$2a$04$tdpdX4KpwfTnGkdTcf5Iz.itP243eS85rQ21K1P0dwwIuViZ5uVWG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 35], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["description", "Eos esse voluptas et ut. Quia velit sint. Magni voluptas corrupti blanditiis corporis. Fugiat modi deleniti iste cum molestiae dolor. Neque nisi velit temporibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Nihil quis et."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_posts"  Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Est delectus non explicabo ab vel veniam laboriosam.", "slug"=>"rem-autem-24", "excerpt"=>"Delectus doloribus soluta facilis sit ex.", "body"=>"Expedita sequi nostrum est dicta nesciunt tenetur nisi. Optio qui molestiae reiciendis. Sed illo aut occaecati delectus deleniti. Et reiciendis aut voluptatem cum ut quae expedita. Et quos nisi dolorem. Laboriosam aliquam est est aut vitae tenetur.", "published"=>true, "tag_list"=>"common,test24,rspec24,ruby24,#rails24", "author_id"=>"36", "written_at"=>"2013-01-14", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 500 Internal Server Error in 5ms  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'kelton.toy@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "kelton.toy@example.com"], ["encrypted_password", "$2a$04$6xPicb0am7Fw2X8Kp66go.aq495K/OdthBZ7DvMZhD7K706R7h6wO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 37], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["description", "Odit perferendis sed. Et deleniti illum qui quae sunt voluptatem. Alias tempore numquam enim nobis consequatur ex. Nostrum voluptates quasi totam voluptatem quis numquam in. Ipsa molestiae maiores quibusdam asperiores aspernatur reprehenderit sed."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Veritatis vitae non."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Hic autem temporibus consequatur nemo sunt est.", "slug"=>"aliquid-adipisci-25", "excerpt"=>"Debitis quasi dolorem explicabo cum amet.", "body"=>"Magnam et tempore voluptatibus dolore ea. Sit placeat aut qui dolores sequi tempora. Aspernatur rerum inventore officia modi. Odit eveniet consequatur vel. Consequatur minima provident voluptate hic consequatur laudantium. Debitis minima quia. Odit et cumque.", "published"=>true, "tag_list"=>"common,test25,rspec25,ruby25,#rails25", "author_id"=>"38", "written_at"=>"2013-01-14", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 500 Internal Server Error in 5ms  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ashtyn_hermiston@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ashtyn_hermiston@example.com"], ["encrypted_password", "$2a$04$V4VS8p98C12IP6.yp9wz9up6U45fOy5e.LdRp.4DONJW46LofIJXK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 39], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["description", "Eos esse voluptas et ut. Quia velit sint. Magni voluptas corrupti blanditiis corporis. Fugiat modi deleniti iste cum molestiae dolor. Neque nisi velit temporibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Nihil quis et."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"soluta-neque-26", "excerpt"=>"Voluptas modi tenetur quia.", "body"=>"Provident dicta enim veritatis. Et eum quo odio ab non. Rem dolorem et aspernatur ea. Aut ipsa cumque voluptates temporibus sunt ducimus veritatis. Quia dolores doloribus aut. Sint sed nam ipsa minima inventore voluptas quod.", "published"=>true, "tag_list"=>"common,test26,rspec26,ruby26,#rails26", "author_id"=>"40", "written_at"=>"2013-01-14", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 500 Internal Server Error in 5ms  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'noble.lueilwitz@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "noble.lueilwitz@example.com"], ["encrypted_password", "$2a$04$qzNeTedJDx1Hf0IwQgj4JOv/wiGUjQNw3nahfZBBwwVFVq/JtqszK"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 41], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["description", "Similique aut natus nostrum explicabo modi sequi doloremque. Suscipit facere maiores est dolores qui. Aliquid ipsum enim voluptatum id illo. Deserunt alias minus harum consequatur."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quaerat assumenda."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"porro-esse-27", "excerpt"=>"Earum.", "body"=>"Sed et voluptatem consequuntur sed quod ducimus. Rerum minima ut voluptatem numquam laboriosam ut at. Earum eum aspernatur ut. Illo quae possimus. Fugit sed rem. Consequatur quia nihil occaecati ducimus amet. Rem quo sed cumque aut enim praesentium.", "published"=>true, "tag_list"=>"common,test27,rspec27,ruby27,#rails27", "author_id"=>"42", "written_at"=>"2013-01-14", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 500 Internal Server Error in 5ms  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'accusamus-tempora-28' LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (1.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 45], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00], ["description", "Dolorum aut quo autem quia. Inventore aut esse. Ut tenetur dolores. Ullam a ut aut assumenda similique nihil. Quia atque repellat culpa quaerat sit repudiandae expedita."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Officiis ratione."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'iusto-fugiat-29' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 47], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["description", "A enim assumenda commodi id. Explicabo maxime rem nobis quam. Laudantium similique ut autem deserunt excepturi ut et. Autem nihil sunt aut quod."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Facere enim nisi qui."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 49], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["description", "Repellat eveniet voluptate sequi quis. Perferendis molestias minima exercitationem aut quaerat dolorum non. Sequi corporis quia expedita."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quidem dicta qui qui."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quia-aperiam-30' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 51], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["description", "Facilis suscipit similique. Provident voluptates omnis et earum. Totam nam dolorum eos aut. Itaque temporibus quas quam maxime natus reiciendis ut. Voluptatem dicta debitis ut qui qui cum voluptas."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Tenetur quibusdam eligendi est soluta enim."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-ut-31' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 50], ["blog_id", 1], ["body", "Excepturi voluptas quo ut nemo eligendi. Quia sit placeat. Eos aut architecto. Dolorem optio et nesciunt aut aut. Recusandae exercitationem mollitia itaque ut rem saepe perspiciatis. Sint laborum eveniet voluptatum dolores."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Voluptate."], ["published", true], ["slug", "qui-ut-31"], ["title", "Iste est soluta enim veritatis doloremque molestiae libero."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test32' OR lower(name) = 'rspec32' OR lower(name) = 'ruby32' OR lower(name) = '#rails32') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test32"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby32' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails32"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 53], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["description", "Non neque deleniti molestiae rerum dolore dolor reprehenderit. Illo animi blanditiis et sit quasi dolores velit. Reiciendis natus consequatur corporis delectus. Eaque itaque quasi atque."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quod quia enim quidem."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'enim-quisquam-32' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'facilis-et-33' LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 55], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["description", "Consectetur voluptatem sed. Voluptas possimus debitis asperiores sit fuga inventore. Est dolorem vitae autem earum qui. Iusto velit deserunt dignissimos in et."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Tempora molestiae voluptatem quam et molestiae quisquam."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-ullam-34' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 56], ["blog_id", 1], ["body", "Eos sit unde officia. Sit excepturi consequatur magni ipsam dolor eum in. Ut dolore error et similique voluptatibus. Alias laboriosam dolores. Id sed veritatis doloremque qui. Voluptas rerum debitis non cupiditate vitae odio."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Voluptas optio."], ["published", true], ["slug", "qui-ullam-34"], ["title", "Vel temporibus rerum ad accusantium excepturi."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test35' OR lower(name) = 'rspec35' OR lower(name) = 'ruby35' OR lower(name) = '#rails35') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails35"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'molestiae-et-35' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 57], ["blog_id", 1], ["body", "Dignissimos cupiditate earum omnis. Rerum blanditiis officia veniam voluptates eum quidem quia. Vel rerum perspiciatis id aperiam. Voluptas excepturi debitis nobis voluptatum in autem. Consequatur perferendis asperiores et unde mollitia enim ducimus. Qui enim nulla. Saepe ut quo qui."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Sit deleniti."], ["published", true], ["slug", "molestiae-et-35"], ["title", "Et est aut."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test36' OR lower(name) = 'rspec36' OR lower(name) = 'ruby36' OR lower(name) = '#rails36') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test36' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test36"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec36"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby36"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails36"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.6ms) rollback transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 59], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["description", "Rerum est ipsa aliquid fugiat. Sunt a autem voluptatem perspiciatis. Voluptatem natus nihil autem dolores minus voluptas. Itaque labore est odit. Ea provident non fugiat."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ut eos sed accusantium tenetur nesciunt earum."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sit-suscipit-36' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction[0m ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 61], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["description", "Dolores doloribus sit ex eveniet molestiae est. Nisi nam provident porro. Asperiores ducimus doloribus sint et qui."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Exercitationem aut velit officiis."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 63], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["description", "Reprehenderit deleniti inventore ad cupiditate voluptas sed sed. Et est quia eum. Natus et delectus qui nihil. Laudantium alias unde non eligendi sunt. Amet praesentium quia."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Voluptas incidunt."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-omnis-37' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 65], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["description", "Reprehenderit hic repellendus rerum dolorem cumque et. Iste assumenda veniam libero voluptas. Odio atque autem et necessitatibus veritatis accusantium blanditiis. Quod ex repellendus. Quo blanditiis aut accusantium."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dicta accusantium."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nemo-earum-38' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 66], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["description", "Quo quo est. Maiores exercitationem quam eaque velit animi et. Error et saepe mollitia. Voluptas expedita molestiae eius veritatis quis. Omnis et est porro et dicta animi fugit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Id veniam."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sit-totam-39' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 67], ["blog_id", 1], ["body", "Vel tempora ut vel eos molestiae provident. Velit saepe quisquam. Inventore ipsa est. Et atque rerum sunt ex blanditiis dolor quia. Et est quam placeat. Laudantium impedit adipisci consequatur. Et et assumenda dolor earum."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Nesciunt aliquam explicabo optio."], ["published", true], ["slug", "sit-totam-39"], ["title", "Sunt aspernatur non magni voluptas placeat eum."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test41' OR lower(name) = 'rspec41' OR lower(name) = 'ruby41' OR lower(name) = '#rails41') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test41"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec41"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby41"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails41"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolorem-ut-40' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 68], ["blog_id", 1], ["body", "Ipsum consequatur eveniet. Quis aspernatur ipsam qui dolorem qui sed et. Alias voluptatem itaque veniam possimus dolores. Consequatur enim non illum repellendus animi. Odio vel quas possimus."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Quo reiciendis ad laudantium minima maxime."], ["published", true], ["slug", "dolorem-ut-40"], ["title", "Numquam adipisci ipsam tenetur vero aspernatur ea."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test42' OR lower(name) = 'rspec42' OR lower(name) = 'ruby42' OR lower(name) = '#rails42') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test42' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby42"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails42"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-vel-41' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 69], ["blog_id", 1], ["body", "Consequuntur ex maxime sint sed dolor quae est. Nam beatae et sed. Incidunt expedita quae sit quia nisi architecto. Porro cum dolorem. Quo quia magnam fugit velit quasi repellendus maxime. Eligendi voluptatem cupiditate porro possimus. Mollitia doloribus non voluptas possimus omnis totam ullam."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Incidunt totam ullam facilis."], ["published", true], ["slug", "et-vel-41"], ["title", "Voluptate eum maiores ut autem sunt."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test43' OR lower(name) = 'rspec43' OR lower(name) = 'ruby43' OR lower(name) = '#rails43') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test43"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec43"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby43"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails43' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails43"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quia-quibusdam-42' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 70], ["blog_id", 1], ["body", "Et suscipit asperiores est. Dignissimos totam qui. At voluptate ex omnis quis quibusdam totam iure. Voluptas sit dicta enim unde blanditiis magni. Quos quibusdam occaecati. Sapiente aliquam et officiis placeat maiores."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Laboriosam ea sint."], ["published", false], ["slug", "quia-quibusdam-42"], ["title", "Quo ut possimus temporibus repudiandae vel minus."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test44' OR lower(name) = 'rspec44' OR lower(name) = 'ruby44' OR lower(name) = '#rails44') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test44"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec44"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby44"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails44"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'possimus-porro-43' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 71], ["blog_id", 1], ["body", "Omnis laudantium porro velit eos omnis. Est ea ratione aspernatur doloribus. Et aut necessitatibus enim. Ut dolore est enim molestiae sapiente. Atque totam consequatur. Dolor magni dolores perferendis qui sit ex."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Ullam ipsa voluptatibus aut incidunt."], ["published", false], ["slug", "possimus-porro-43"], ["title", "Cum nisi voluptatem eum debitis."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test45' OR lower(name) = 'rspec45' OR lower(name) = 'ruby45' OR lower(name) = '#rails45') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test45"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec45"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby45"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails45"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-dolorem-44' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 72], ["blog_id", 1], ["body", "Molestias maxime cum. Veniam non dolorem nihil non omnis sunt. Molestiae maxime et dignissimos. Molestiae expedita soluta consequatur nostrum sapiente fugiat error. Modi sed numquam asperiores et iste. Voluptatibus soluta voluptatem voluptate."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Sapiente temporibus eveniet dolorum perspiciatis nulla."], ["published", false], ["slug", "qui-dolorem-44"], ["title", "Ex aut iusto dolor vitae ut."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test46' OR lower(name) = 'rspec46' OR lower(name) = 'ruby46' OR lower(name) = '#rails46') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test46"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec46"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails46"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f'  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 73], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["description", "Quae sint repudiandae et est temporibus consectetur inventore. Et vero molestiae quia qui. Eveniet illum qui maxime eum odio animi et. Harum sunt facere tempore est quas non nihil. Qui deserunt et ab."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sint debitis dolor."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sit-totam-45' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 74], ["blog_id", 1], ["body", "Vel tempora ut vel eos molestiae provident. Velit saepe quisquam. Inventore ipsa est. Et atque rerum sunt ex blanditiis dolor quia. Et est quam placeat. Laudantium impedit adipisci consequatur. Et et assumenda dolor earum."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Nesciunt aliquam explicabo optio."], ["published", true], ["slug", "sit-totam-45"], ["title", "Sunt aspernatur non magni voluptas placeat eum."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test47' OR lower(name) = 'rspec47' OR lower(name) = 'ruby47' OR lower(name) = '#rails47') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test47"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec47"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby47"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails47"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolorem-ut-46' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 75], ["blog_id", 1], ["body", "Ipsum consequatur eveniet. Quis aspernatur ipsam qui dolorem qui sed et. Alias voluptatem itaque veniam possimus dolores. Consequatur enim non illum repellendus animi. Odio vel quas possimus."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Quo reiciendis ad laudantium minima maxime."], ["published", true], ["slug", "dolorem-ut-46"], ["title", "Numquam adipisci ipsam tenetur vero aspernatur ea."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test48' OR lower(name) = 'rspec48' OR lower(name) = 'ruby48' OR lower(name) = '#rails48') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test48' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails48"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-vel-47' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 76], ["blog_id", 1], ["body", "Consequuntur ex maxime sint sed dolor quae est. Nam beatae et sed. Incidunt expedita quae sit quia nisi architecto. Porro cum dolorem. Quo quia magnam fugit velit quasi repellendus maxime. Eligendi voluptatem cupiditate porro possimus. Mollitia doloribus non voluptas possimus omnis totam ullam."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Incidunt totam ullam facilis."], ["published", true], ["slug", "et-vel-47"], ["title", "Voluptate eum maiores ut autem sunt."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test49' OR lower(name) = 'rspec49' OR lower(name) = 'ruby49' OR lower(name) = '#rails49') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test49' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails49"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quia-quibusdam-48' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 77], ["blog_id", 1], ["body", "Et suscipit asperiores est. Dignissimos totam qui. At voluptate ex omnis quis quibusdam totam iure. Voluptas sit dicta enim unde blanditiis magni. Quos quibusdam occaecati. Sapiente aliquam et officiis placeat maiores."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Laboriosam ea sint."], ["published", true], ["slug", "quia-quibusdam-48"], ["title", "Quo ut possimus temporibus repudiandae vel minus."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test50' OR lower(name) = 'rspec50' OR lower(name) = 'ruby50' OR lower(name) = '#rails50') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec50"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails50"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'possimus-porro-49' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 78], ["blog_id", 1], ["body", "Omnis laudantium porro velit eos omnis. Est ea ratione aspernatur doloribus. Et aut necessitatibus enim. Ut dolore est enim molestiae sapiente. Atque totam consequatur. Dolor magni dolores perferendis qui sit ex."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Ullam ipsa voluptatibus aut incidunt."], ["published", false], ["slug", "possimus-porro-49"], ["title", "Cum nisi voluptatem eum debitis."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test51' OR lower(name) = 'rspec51' OR lower(name) = 'ruby51' OR lower(name) = '#rails51') ActsAsTaggableOn::Tag Exists (0.2ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails51"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-dolorem-50' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 79], ["blog_id", 1], ["body", "Molestias maxime cum. Veniam non dolorem nihil non omnis sunt. Molestiae maxime et dignissimos. Molestiae expedita soluta consequatur nostrum sapiente fugiat error. Modi sed numquam asperiores et iste. Voluptatibus soluta voluptatem voluptate."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Sapiente temporibus eveniet dolorum perspiciatis nulla."], ["published", false], ["slug", "qui-dolorem-50"], ["title", "Ex aut iusto dolor vitae ut."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test52' OR lower(name) = 'rspec52' OR lower(name) = 'ruby52' OR lower(name) = '#rails52') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby52"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails52"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.3ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dicta-et-51' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 80], ["blog_id", 1], ["body", "Repellat animi recusandae placeat. Cum magni omnis. Laudantium dignissimos sequi consequatur minima tempora et. Fuga et ipsam. Et possimus quia voluptatem repellat iure nulla."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Similique sed non odit eius veniam."], ["published", false], ["slug", "dicta-et-51"], ["title", "Optio ipsam a labore."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test53' OR lower(name) = 'rspec53' OR lower(name) = 'ruby53' OR lower(name) = '#rails53') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails53"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 't'  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 81], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["description", "Quae sint repudiandae et est temporibus consectetur inventore. Et vero molestiae quia qui. Eveniet illum qui maxime eum odio animi et. Harum sunt facere tempore est quas non nihil. Qui deserunt et ab."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sint debitis dolor."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sit-totam-52' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 82], ["blog_id", 1], ["body", "Vel tempora ut vel eos molestiae provident. Velit saepe quisquam. Inventore ipsa est. Et atque rerum sunt ex blanditiis dolor quia. Et est quam placeat. Laudantium impedit adipisci consequatur. Et et assumenda dolor earum."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Nesciunt aliquam explicabo optio."], ["published", true], ["slug", "sit-totam-52"], ["title", "Sunt aspernatur non magni voluptas placeat eum."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test54' OR lower(name) = 'rspec54' OR lower(name) = 'ruby54' OR lower(name) = '#rails54') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test54' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails54"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolorem-ut-53' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 83], ["blog_id", 1], ["body", "Ipsum consequatur eveniet. Quis aspernatur ipsam qui dolorem qui sed et. Alias voluptatem itaque veniam possimus dolores. Consequatur enim non illum repellendus animi. Odio vel quas possimus."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Quo reiciendis ad laudantium minima maxime."], ["published", true], ["slug", "dolorem-ut-53"], ["title", "Numquam adipisci ipsam tenetur vero aspernatur ea."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test55' OR lower(name) = 'rspec55' OR lower(name) = 'ruby55' OR lower(name) = '#rails55') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test55' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test55"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec55"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby55"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails55"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-vel-54' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 84], ["blog_id", 1], ["body", "Consequuntur ex maxime sint sed dolor quae est. Nam beatae et sed. Incidunt expedita quae sit quia nisi architecto. Porro cum dolorem. Quo quia magnam fugit velit quasi repellendus maxime. Eligendi voluptatem cupiditate porro possimus. Mollitia doloribus non voluptas possimus omnis totam ullam."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Incidunt totam ullam facilis."], ["published", true], ["slug", "et-vel-54"], ["title", "Voluptate eum maiores ut autem sunt."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test56' OR lower(name) = 'rspec56' OR lower(name) = 'ruby56' OR lower(name) = '#rails56') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails56"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quia-quibusdam-55' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 85], ["blog_id", 1], ["body", "Et suscipit asperiores est. Dignissimos totam qui. At voluptate ex omnis quis quibusdam totam iure. Voluptas sit dicta enim unde blanditiis magni. Quos quibusdam occaecati. Sapiente aliquam et officiis placeat maiores."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Laboriosam ea sint."], ["published", true], ["slug", "quia-quibusdam-55"], ["title", "Quo ut possimus temporibus repudiandae vel minus."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test57' OR lower(name) = 'rspec57' OR lower(name) = 'ruby57' OR lower(name) = '#rails57') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test57"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails57"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'possimus-porro-56' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 86], ["blog_id", 1], ["body", "Omnis laudantium porro velit eos omnis. Est ea ratione aspernatur doloribus. Et aut necessitatibus enim. Ut dolore est enim molestiae sapiente. Atque totam consequatur. Dolor magni dolores perferendis qui sit ex."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Ullam ipsa voluptatibus aut incidunt."], ["published", true], ["slug", "possimus-porro-56"], ["title", "Cum nisi voluptatem eum debitis."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test58' OR lower(name) = 'rspec58' OR lower(name) = 'ruby58' OR lower(name) = '#rails58') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby58"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails58' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails58"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-dolorem-57' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 87], ["blog_id", 1], ["body", "Molestias maxime cum. Veniam non dolorem nihil non omnis sunt. Molestiae maxime et dignissimos. Molestiae expedita soluta consequatur nostrum sapiente fugiat error. Modi sed numquam asperiores et iste. Voluptatibus soluta voluptatem voluptate."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Sapiente temporibus eveniet dolorum perspiciatis nulla."], ["published", true], ["slug", "qui-dolorem-57"], ["title", "Ex aut iusto dolor vitae ut."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test59' OR lower(name) = 'rspec59' OR lower(name) = 'ruby59' OR lower(name) = '#rails59') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails59"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dicta-et-58' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 88], ["blog_id", 1], ["body", "Repellat animi recusandae placeat. Cum magni omnis. Laudantium dignissimos sequi consequatur minima tempora et. Fuga et ipsam. Et possimus quia voluptatem repellat iure nulla."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Similique sed non odit eius veniam."], ["published", true], ["slug", "dicta-et-58"], ["title", "Optio ipsam a labore."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test60' OR lower(name) = 'rspec60' OR lower(name) = 'ruby60' OR lower(name) = '#rails60') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec60"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby60"]] ActsAsTaggableOn::Tag Exists (0.3ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails60' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails60"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-ullam-59' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 89], ["blog_id", 1], ["body", "Totam et ad. Non asperiores et at quos veritatis maxime quo. Veniam a voluptas cupiditate dolor eos. Praesentium non sed. In iste quasi est repellendus enim veritatis. Esse quis laudantium dolores enim."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Culpa voluptates doloribus."], ["published", true], ["slug", "qui-ullam-59"], ["title", "Et voluptates deleniti eos aut."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test61' OR lower(name) = 'rspec61' OR lower(name) = 'ruby61' OR lower(name) = '#rails61') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails61"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'in-officia-60' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 90], ["blog_id", 1], ["body", "Recusandae rerum beatae cum et. Ullam debitis deleniti. Consectetur voluptatem sed. Voluptas possimus debitis asperiores sit fuga inventore. Est dolorem vitae autem earum qui. Iusto velit deserunt dignissimos in et. Vel temporibus rerum ad accusantium excepturi."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Est."], ["published", true], ["slug", "in-officia-60"], ["title", "Omnis quis soluta non libero error qui fugiat."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test62' OR lower(name) = 'rspec62' OR lower(name) = 'ruby62' OR lower(name) = '#rails62') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails62' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails62"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'delectus-ullam-61' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 91], ["blog_id", 1], ["body", "Eos tempore magni ad aut consequatur ea. Incidunt adipisci fuga rerum sunt excepturi tenetur. Alias reiciendis porro eos in. Doloremque nostrum reiciendis. Velit aut sapiente sed tenetur provident quia. Tenetur consequatur aperiam velit et et quisquam omnis."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Eos sit."], ["published", true], ["slug", "delectus-ullam-61"], ["title", "Repellendus quisquam pariatur a harum non et aut."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test63' OR lower(name) = 'rspec63' OR lower(name) = 'ruby63' OR lower(name) = '#rails63') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails63' LIMIT 1 SQL (0.2ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails63"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'explicabo-omnis-62' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 92], ["blog_id", 1], ["body", "Voluptatem earum inventore fugit totam temporibus. Alias quis aspernatur vel eos voluptatem provident. Et sunt sint consequatur reprehenderit. Perferendis quos voluptas magni esse. Consequatur quam molestiae."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Praesentium sed reprehenderit quidem."], ["published", true], ["slug", "explicabo-omnis-62"], ["title", "Dolore recusandae suscipit quod cum omnis consequatur aspernatur."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ad-mollitia-63' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 93], ["blog_id", 1], ["body", "Dolore ullam sapiente hic et est. Voluptatum velit animi aut nisi accusamus esse. Nesciunt reiciendis fugiat ut rerum molestias quos id. Reiciendis blanditiis dignissimos omnis maxime sequi ratione. Molestiae ducimus ut cupiditate deleniti. Ut quibusdam magni et accusamus iure. Hic in sequi porro est voluptatem."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Magni corrupti voluptatum dolorem consequatur."], ["published", true], ["slug", "ad-mollitia-63"], ["title", "Rem magnam inventore quasi eum vitae."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_5137b8e ON posts_taggings_5137b8e.taggable_id = almanac_posts.id AND posts_taggings_5137b8e.taggable_type = 'Almanac::Post' AND posts_taggings_5137b8e.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 94], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["description", "Recusandae vitae ea dolorem sunt. Reprehenderit quis eum nihil. Ex voluptas molestiae."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Corrupti tempora nihil qui aut dolorem illo."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'iste-voluptatum-64' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 95], ["blog_id", 1], ["body", "Repellat vitae maiores aut repellendus. Minus saepe reiciendis nihil nam quibusdam facere. Et dolores commodi in quia quidem at. Nisi officia laudantium recusandae velit qui in. Adipisci nihil expedita fuga ut. In perferendis doloremque ea. Voluptatem aspernatur sed eum."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Nisi eos fuga qui."], ["published", true], ["slug", "iste-voluptatum-64"], ["title", "Est aut et nisi debitis."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test64' OR lower(name) = 'rspec64' OR lower(name) = 'ruby64' OR lower(name) = '#rails64') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails64"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'impedit-facilis-65' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 96], ["blog_id", 1], ["body", "Cupiditate voluptatum aut atque quia aut amet non. Et cum ipsam et qui pariatur nihil. Quo nemo occaecati ducimus nulla. Praesentium rerum repudiandae. Debitis ullam nemo accusamus adipisci nostrum quibusdam. Optio commodi cum corrupti."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Accusamus ullam ut tenetur sunt aut."], ["published", true], ["slug", "impedit-facilis-65"], ["title", "Quia labore modi sit alias soluta impedit doloribus."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test65' OR lower(name) = 'rspec65' OR lower(name) = 'ruby65' OR lower(name) = '#rails65') ActsAsTaggableOn::Tag Exists (40.9ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test65' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails65"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'qui-dolores-66' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 97], ["blog_id", 1], ["body", "Iusto aut dicta illum cumque sit asperiores cum. Dolorum voluptatem quo ea quaerat non. Ea minima nemo soluta rerum voluptate. Hic impedit quaerat voluptatum voluptatem saepe et repudiandae. Quidem sit recusandae et. Distinctio nisi velit incidunt quos itaque perferendis nesciunt. Consequatur illo error modi."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Beatae consectetur."], ["published", true], ["slug", "qui-dolores-66"], ["title", "Quia aspernatur voluptates hic sit ut quas ipsum."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test66' OR lower(name) = 'rspec66' OR lower(name) = 'ruby66' OR lower(name) = '#rails66') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails66"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'in-quae-67' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 98], ["blog_id", 1], ["body", "Provident vel porro quis consequatur pariatur quas perspiciatis. Quibusdam non voluptatibus eligendi quis laborum culpa. Blanditiis quo eligendi. Cupiditate quia numquam aperiam repellendus distinctio rem. Dolorem eveniet soluta."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Aut qui minus."], ["published", true], ["slug", "in-quae-67"], ["title", "Totam expedita omnis dicta."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test67' OR lower(name) = 'rspec67' OR lower(name) = 'ruby67' OR lower(name) = '#rails67') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby67"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails67' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails67"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quidem-sunt-68' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 99], ["blog_id", 1], ["body", "Id aut sint. Nostrum omnis voluptas dignissimos. Provident voluptatem sed. Consequatur laudantium nemo voluptate natus ut neque. Voluptatum cum nihil aliquid exercitationem aliquam animi. Libero quia consequatur. Veniam repellat ut architecto tempore."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Quae saepe quia necessitatibus illo doloremque."], ["published", true], ["slug", "quidem-sunt-68"], ["title", "Voluptates dolor porro qui consequatur tempore vero molestias."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test68' OR lower(name) = 'rspec68' OR lower(name) = 'ruby68' OR lower(name) = '#rails68') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby68"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails68' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails68"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ut-repellendus-69' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 100], ["blog_id", 1], ["body", "Soluta esse voluptates illum omnis voluptate tenetur voluptatem. Sunt ut quis sequi labore. Facilis et facere laboriosam aperiam blanditiis. Sed possimus et repudiandae. Nihil dolorem sunt occaecati. Vero nam dolor consequatur nihil."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Amet nulla ut."], ["published", true], ["slug", "ut-repellendus-69"], ["title", "Porro qui sapiente."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test69' OR lower(name) = 'rspec69' OR lower(name) = 'ruby69' OR lower(name) = '#rails69') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test69' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails69"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'id-eveniet-70' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 101], ["blog_id", 1], ["body", "Et qui id recusandae dicta esse ad. Est et non laborum ut ut unde. Labore minus consectetur dolores quia. Corporis autem possimus. Iusto quae aut explicabo facere vel et deleniti. Autem qui vel autem ea qui sed repellat."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Aut aspernatur sint."], ["published", true], ["slug", "id-eveniet-70"], ["title", "Exercitationem accusamus eveniet consequatur minima sunt."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test70' OR lower(name) = 'rspec70' OR lower(name) = 'ruby70' OR lower(name) = '#rails70') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test70' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails70"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quisquam-libero-71' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 102], ["blog_id", 1], ["body", "Et voluptas eaque atque non aperiam tempora labore. Voluptas pariatur cum itaque inventore. A adipisci aperiam voluptatem soluta pariatur nihil. Architecto laboriosam aut. Fugit aut esse nam. Minima consequatur voluptate totam in."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Sed nobis impedit ducimus dolores veritatis."], ["published", true], ["slug", "quisquam-libero-71"], ["title", "Animi veritatis qui fugit molestiae consequatur possimus."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test71' OR lower(name) = 'rspec71' OR lower(name) = 'ruby71' OR lower(name) = '#rails71') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails71"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quas-aut-72' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 103], ["blog_id", 1], ["body", "Sit hic eos. Delectus odit quos autem non ex. Voluptates quae officiis dolorem temporibus. Modi aliquid aut fugiat aut occaecati harum dolores. Repellat quia voluptatibus nihil. Asperiores dolorum qui animi iure hic."], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["excerpt", "Explicabo illum sint."], ["published", true], ["slug", "quas-aut-72"], ["title", "Molestias vel architecto voluptatem inventore."], ["updated_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test72' OR lower(name) = 'rspec72' OR lower(name) = 'ruby72' OR lower(name) = '#rails72') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails72"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:40 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-qui-73' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 104], ["blog_id", 1], ["body", "Non consequatur hic rerum distinctio ad incidunt. Officia et vero. Doloremque enim quia sed tenetur voluptas. Voluptates odit aut maxime. Excepturi nobis accusantium. Harum accusantium impedit iure eaque consequatur explicabo aut. Temporibus commodi inventore ut et necessitatibus."], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["excerpt", "Veritatis et sint sed."], ["published", true], ["slug", "et-qui-73"], ["title", "Ab veritatis esse dolorem quia necessitatibus."], ["updated_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test73' OR lower(name) = 'rspec73' OR lower(name) = 'ruby73' OR lower(name) = '#rails73') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails73"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolores-minus-74' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 105], ["blog_id", 1], ["body", "Numquam id omnis harum. Nobis corrupti qui quaerat possimus ducimus voluptatem praesentium. Beatae necessitatibus assumenda quia aut quis earum. Dicta omnis aut voluptates voluptatem voluptatem necessitatibus et. Quos totam ipsam omnis pariatur amet aut ut. Explicabo qui animi atque commodi molestiae praesentium. Quibusdam perspiciatis dolores et eum optio."], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["excerpt", "Consequatur."], ["published", false], ["slug", "dolores-minus-74"], ["title", "Tempora velit minima non eum officiis nihil."], ["updated_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test74' OR lower(name) = 'rspec74' OR lower(name) = 'ruby74' OR lower(name) = '#rails74') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails74"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["tag_id", 1], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 42 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["tag_id", 42], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 43 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["tag_id", 43], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 44 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["tag_id", 44], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 45 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["tag_id", 45], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'enim-ea-75' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 106], ["blog_id", 1], ["body", "Aliquam illo voluptatem recusandae. Placeat ut ea fugit laudantium deleniti. Rem dolores est ducimus rerum deleniti officiis. Hic qui ut dolorum eum. Sed quis fugit veniam omnis rerum sint. Omnis nihil ad."], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["excerpt", "Ullam non."], ["published", false], ["slug", "enim-ea-75"], ["title", "Sunt earum corporis quis vero harum ipsum."], ["updated_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test75' OR lower(name) = 'rspec75' OR lower(name) = 'ruby75' OR lower(name) = '#rails75') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails75"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["tag_id", 1], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 46 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["tag_id", 46], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 47 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["tag_id", 47], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 48 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["tag_id", 48], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 49 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["tag_id", 49], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_613eae5 ON posts_taggings_613eae5.taggable_id = almanac_posts.id AND posts_taggings_613eae5.taggable_type = 'Almanac::Post' AND posts_taggings_613eae5.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 108], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["description", "Sunt reprehenderit nostrum id ipsa aliquid. Minima ut repellat. Nesciunt aliquam explicabo optio totam nihil. Et et soluta qui consequatur."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Harum sunt facere tempore est quas non."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 109], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["description", "Inventore ipsa est. Et atque rerum sunt ex blanditiis dolor quia. Et est quam placeat. Laudantium impedit adipisci consequatur."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Exercitationem delectus."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ashtyn_hermiston@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ashtyn_hermiston@example.com"], ["encrypted_password", "$2a$04$0hyGLZ4gp/uBsnBHdzitceDe0T1mKJV9EXjErA2.Hs/yQJSeAc.4."], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"  Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Nihil quis et.", "description"=>"Eos esse voluptas et ut. Quia velit sint. Magni voluptas corrupti blanditiis corporis. Fugiat modi deleniti iste cum molestiae dolor. Neque nisi velit temporibus.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 500 Internal Server Error in 5ms  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'carrie.hahn@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "carrie.hahn@example.com"], ["encrypted_password", "$2a$04$iUPYocJT/3PyJG02SMI6JujD1vRwnGMI4dK09IbD0qAwFVgh6SxLS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Dolorum repellendus veniam perferendis eum quisquam.", "description"=>"Tempore harum sed aut delectus debitis. Est rerum voluptatem atque dolorem. Reiciendis molestiae minus. Non ut et eos maxime inventore.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 500 Internal Server Error in 5ms  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ashtyn_hermiston@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ashtyn_hermiston@example.com"], ["encrypted_password", "$2a$04$xPG1tJnfFv905ViK52iFV.3NUaFNHnz3w4miwcSE5YnnwEEsxy2EW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs" Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Rerum quisquam et non beatae officia. Eos esse voluptas et ut. Quia velit sint. Magni voluptas corrupti blanditiis corporis.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 500 Internal Server Error in 4ms  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'beryl@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "beryl@example.com"], ["encrypted_password", "$2a$04$FmRxpMjQQ3gAhk8x2lH5QOn3QPLxQd0lvc1GYb806dULKYKrngOzm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Praesentium dignissimos ut. Corrupti qui quasi aliquam libero exercitationem odit velit. Modi a blanditiis. Aut vel accusamus molestias nostrum quis. Ut voluptas explicabo.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 500 Internal Server Error in 4ms  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ashtyn_hermiston@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ashtyn_hermiston@example.com"], ["encrypted_password", "$2a$04$Vt/FywaY1tpV3CSPmr8C2eNfpSApwzi.eYDfEtGK/VbDC8HofPPb2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 111], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["description", "Eos esse voluptas et ut. Quia velit sint. Magni voluptas corrupti blanditiis corporis. Fugiat modi deleniti iste cum molestiae dolor. Neque nisi velit temporibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Nihil quis et."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Testz", "description"=>"Soluta eum blanditiis. Quis quasi sunt nam nihil sed eos non. Amet aut nam sunt unde ad et error. Quam hic quo dolorem.", "author_id"=>"112"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 500 Internal Server Error in 5ms  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jordon.thiel@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jordon.thiel@example.com"], ["encrypted_password", "$2a$04$.Y31ErBym1Mdi6bN3rmRo.SWaq2ARMAOIctbBSk84.qJj.T1N3NIW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 113], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["description", "Voluptas perferendis asperiores qui vel. Sit saepe sit soluta. Eligendi provident qui qui rerum ut ad."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Non ut et eos maxime."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Sit sed tempora inventore.", "description"=>"Id aut et non provident facilis doloremque qui. Est omnis amet animi voluptatem eius voluptatem. Alias aliquid illo ipsam aut. Repudiandae consequatur dicta voluptas blanditiis. Est sint eius.", "author_id"=>"114"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 500 Internal Server Error in 4ms  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ashtyn_hermiston@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "ashtyn_hermiston@example.com"], ["encrypted_password", "$2a$04$bShB5N1A6Gpqf1rDQXNBde3J7HihE7O0YTaqXovVmpN/I.z3mmPDS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 115], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["description", "Eos esse voluptas et ut. Quia velit sint. Magni voluptas corrupti blanditiis corporis. Fugiat modi deleniti iste cum molestiae dolor. Neque nisi velit temporibus."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Nihil quis et."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Soluta eum blanditiis. Quis quasi sunt nam nihil sed eos non. Amet aut nam sunt unde ad et error. Quam hic quo dolorem.", "author_id"=>"116"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 500 Internal Server Error in 4ms  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jordon.thiel@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jordon.thiel@example.com"], ["encrypted_password", "$2a$04$xmnHhmWruj8ZisGVmFKdDekK98S9/aKf41CdjaFH.jZnOdbZzFz3K"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 117], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00], ["description", "Voluptas perferendis asperiores qui vel. Sit saepe sit soluta. Eligendi provident qui qui rerum ut ad."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Non ut et eos maxime."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:23:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Sit sed tempora inventore deleniti. Id aut et non provident facilis doloremque qui. Est omnis amet animi voluptatem eius voluptatem. Alias aliquid illo ipsam aut. Repudiandae consequatur dicta voluptas blanditiis.", "author_id"=>"118"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 500 Internal Server Error in 4ms  (0.5ms) rollback transaction Connecting to database specified by database.yml  (1.2ms) DELETE FROM "users";  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';  (1.0ms) DELETE FROM "almanac_posts";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_posts';  (0.8ms) DELETE FROM "almanac_images";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_images';  (1.0ms) DELETE FROM "tags";  (0.1ms) DELETE FROM sqlite_sequence where name = 'tags';  (0.7ms) DELETE FROM "taggings";  (0.1ms) DELETE FROM sqlite_sequence where name = 'taggings';  (0.8ms) DELETE FROM "almanac_comments";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_comments';  (0.6ms) DELETE FROM "almanac_blogs";  (0.1ms) DELETE FROM sqlite_sequence where name = 'almanac_blogs';  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (1.8ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (5.6ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 2], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["description", "Voluptas facilis fuga excepturi. Neque optio ipsam facere. Sint omnis officia qui."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Rerum officia odio sunt in occaecati."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'enim-unde-1' LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 4], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["description", "Incidunt cupiditate deleniti similique perferendis nemo a. Omnis fugiat vel qui. Aspernatur sunt explicabo voluptas consequatur facilis qui. Eius et cumque sed provident et eligendi rerum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Hic omnis explicabo quia et ducimus eligendi."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'rerum-magni-2' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 6], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["description", "Blanditiis et expedita et sit rerum tempora quis. Totam voluptatum voluptates voluptate ab non non. Sed officia consequuntur exercitationem quo qui non. Nisi numquam ut veniam et quis dolore exercitationem."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Consequatur ut iure."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 8], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["description", "Deserunt et vero sunt numquam eum. Eligendi doloribus enim minus maxime asperiores dolores. Cupiditate id consequuntur eos recusandae dolorum praesentium quisquam."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Ut tempora repudiandae id necessitatibus autem molestiae."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'est-corrupti-3' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 10], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["description", "Voluptatem iure enim ipsum quis soluta sunt. Nobis sit cupiditate quo fuga est accusantium libero. Minus autem ab tenetur deserunt."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Sint similique laudantium iste quasi."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sint-cupiditate-4' LIMIT 1 SQL (0.6ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 9], ["blog_id", 1], ["body", "Illum aut eum dolorem harum impedit tenetur et. Omnis autem praesentium. Accusamus quasi delectus aspernatur rem id est accusantium. Similique omnis qui fugit. Suscipit totam laudantium eligendi veniam hic."], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["excerpt", "In."], ["published", true], ["slug", "sint-cupiditate-4"], ["title", "Praesentium modi iusto perferendis consequuntur est consequatur illum."], ["updated_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test5' OR lower(name) = 'rspec5' OR lower(name) = 'ruby5' OR lower(name) = '#rails5') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby5' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby5"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails5' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails5"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 12], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["description", "Iste dolorem non minus rem provident quia. Natus autem quia sunt quis quos debitis dolor. Possimus rerum et ut qui consequuntur."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Et vel enim."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'nobis-et-5' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.6ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 14], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["description", "Saepe est ipsa sunt enim. Eum at modi et. Consequatur quis ut dolores porro esse. Quis hic ut ducimus soluta aliquam officiis aliquid."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Similique distinctio rem modi ut."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eum-distinctio-6' LIMIT 1  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 15], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["description", "Perspiciatis ut corrupti praesentium aliquam tenetur ut. Quo et culpa dignissimos et. Dolorem id laboriosam et explicabo."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quia quos non voluptates sed."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'odio-consequuntur-7' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 16], ["blog_id", 1], ["body", "Aut quas qui in quis. Ut qui ipsum deserunt dolor unde in at. Dolor pariatur sunt. Deserunt qui autem accusamus maiores est non ut. Aut et aut ullam ipsum voluptatibus debitis. Porro aliquam dolores labore."], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["excerpt", "Ipsam consequatur soluta ut consectetur quia."], ["published", true], ["slug", "odio-consequuntur-7"], ["title", "Atque molestiae ad maxime temporibus excepturi vel vero."], ["updated_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test8' OR lower(name) = 'rspec8' OR lower(name) = 'ruby8' OR lower(name) = '#rails8') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby8"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails8' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails8"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eaque-quis-8' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 17], ["blog_id", 1], ["body", "Et tenetur voluptas. Illum asperiores et. Ipsam doloribus qui magnam. In magni sit est quia et et. Ex quisquam dolorem molestiae aut atque quos. Error ut magni velit sunt est qui."], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["excerpt", "Eius labore exercitationem est quisquam eligendi."], ["published", true], ["slug", "eaque-quis-8"], ["title", "Ducimus deleniti ut voluptates natus recusandae."], ["updated_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test9' OR lower(name) = 'rspec9' OR lower(name) = 'ruby9' OR lower(name) = '#rails9') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test9' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test9"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec9"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby9"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails9' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails9"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC  (0.6ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'labore-aut-9' LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 20], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["description", "Exercitationem est porro. Quo ut ipsum in perspiciatis. Ex distinctio voluptatem commodi aut mollitia eligendi. Placeat aut harum sequi quia nihil. Ad temporibus architecto quam sunt."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Quasi explicabo ratione."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'molestiae-delectus-10' LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'fugiat-quis-11' LIMIT 1  (0.0ms) rollback transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 23], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["description", "Sint et dolores sequi veniam. Et molestiae tempora velit nulla. Explicabo quia vitae sint consequatur. Et tenetur dolorem deserunt deleniti quidem repellat consequatur."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Accusantium et nisi delectus."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = '' LIMIT 1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 24], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["description", "Facilis nesciunt consequatur nisi iusto qui. Enim cupiditate aut. Omnis distinctio reprehenderit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Molestiae temporibus et reprehenderit eaque dicta."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sit-maiores-12' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 25], ["blog_id", 1], ["body", "Error tenetur laudantium qui. Commodi minima fugit est ipsum laborum et. Quia vel beatae soluta sint est eius. Quia ut culpa provident repellendus. Dolores enim eos ut quod expedita aperiam. Provident eos velit ex fuga aut accusantium quia."], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["excerpt", "Ipsam rerum ipsa voluptatum."], ["published", true], ["slug", "sit-maiores-12"], ["title", "Sit ab ea qui."], ["updated_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test14' OR lower(name) = 'rspec14' OR lower(name) = 'ruby14' OR lower(name) = '#rails14') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test14"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec14"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby14"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails14' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails14"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'harum-officiis-13' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 26], ["blog_id", 1], ["body", "Magni eos dolores voluptas. Aliquam aut magnam officia culpa. Esse voluptatum temporibus vitae. Nostrum quia aut quia officiis ut nobis. Quo error dolor. Quibusdam non nihil laborum modi aut cum aperiam."], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["excerpt", "Nihil deserunt eum quibusdam."], ["published", true], ["slug", "harum-officiis-13"], ["title", "Explicabo dolor quod ducimus."], ["updated_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test15' OR lower(name) = 'rspec15' OR lower(name) = 'ruby15' OR lower(name) = '#rails15') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test15' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test15"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec15"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby15"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails15' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails15"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-ut-14' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 27], ["blog_id", 1], ["body", "Aut aut nisi dolore non sunt in. Et adipisci quo illo quaerat sint accusantium. Voluptatem odio iure dolores quia consequatur architecto. Et alias enim quisquam. Unde nihil non perferendis aliquam et ad. Minima voluptas sit corrupti eum tenetur ratione natus."], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["excerpt", "Magnam enim."], ["published", true], ["slug", "aut-ut-14"], ["title", "Fugiat mollitia ut amet optio rerum adipisci."], ["updated_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test16' OR lower(name) = 'rspec16' OR lower(name) = 'ruby16' OR lower(name) = '#rails16') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test16"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec16"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby16"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails16' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails16"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'reprehenderit-molestias-15' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 28], ["blog_id", 1], ["body", "Laudantium ex eius odit eum illo sunt qui. Ratione minus praesentium inventore ut vel voluptatem assumenda. Nobis doloribus vel perspiciatis eius numquam. Eos quia animi qui ab optio id vero. Velit occaecati necessitatibus et tenetur. Ad aut ut aut velit. Reprehenderit deserunt ab labore."], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["excerpt", "Deleniti quia ut nihil."], ["published", true], ["slug", "reprehenderit-molestias-15"], ["title", "Nisi consequatur ipsum eos accusamus reprehenderit assumenda."], ["updated_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test17' OR lower(name) = 'rspec17' OR lower(name) = 'ruby17' OR lower(name) = '#rails17') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test17"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec17"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby17"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails17' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails17"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'vel-sed-16' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 29], ["blog_id", 1], ["body", "Et odio ab. Libero natus laborum ipsum ipsa voluptatibus. Qui doloribus quia. Qui omnis cupiditate. Asperiores aut error rerum quis rerum nihil. Eaque doloremque illum dolores sint labore distinctio."], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["excerpt", "Dolores facilis voluptatem pariatur optio inventore."], ["published", false], ["slug", "vel-sed-16"], ["title", "Quia voluptatibus eveniet optio ut eos."], ["updated_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test18' OR lower(name) = 'rspec18' OR lower(name) = 'ruby18' OR lower(name) = '#rails18') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test18' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test18"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec18' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec18"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby18' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby18"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails18' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails18"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (38.3ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'animi-cupiditate-17' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 30], ["blog_id", 1], ["body", "Perferendis asperiores quibusdam. Culpa odio dolorem quis nam vero. Exercitationem sint necessitatibus commodi. Aspernatur sapiente hic odio quia ex exercitationem et. Atque minima quia quia repellendus provident. Velit harum rerum consectetur eum. Qui qui dicta eos neque ipsa aspernatur."], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["excerpt", "Ullam hic quo voluptatem dolorem."], ["published", false], ["slug", "animi-cupiditate-17"], ["title", "Ratione assumenda natus ut qui eos et et."], ["updated_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test19' OR lower(name) = 'rspec19' OR lower(name) = 'ruby19' OR lower(name) = '#rails19') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test19"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec19"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby19"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails19' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails19"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'est-quisquam-18' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 31], ["blog_id", 1], ["body", "Porro voluptas minus voluptatem ut omnis in. Consequuntur eum vel tempora minus quam. Fuga aut at non qui aut. Qui molestiae numquam est. Non corrupti molestiae eaque quis voluptatibus qui aut. Perferendis quo dicta vel non iste."], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["excerpt", "Quo est dolorem."], ["published", false], ["slug", "est-quisquam-18"], ["title", "Eos necessitatibus nesciunt explicabo."], ["updated_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test20' OR lower(name) = 'rspec20' OR lower(name) = 'ruby20' OR lower(name) = '#rails20') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test20' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test20"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec20' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec20"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby20' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby20"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails20' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails20"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 't'  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 32], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["description", "Aut quo tempora quos blanditiis et non. Enim cupiditate aut. Omnis distinctio reprehenderit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Necessitatibus velit."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sit-maiores-19' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 33], ["blog_id", 1], ["body", "Error tenetur laudantium qui. Commodi minima fugit est ipsum laborum et. Quia vel beatae soluta sint est eius. Quia ut culpa provident repellendus. Dolores enim eos ut quod expedita aperiam. Provident eos velit ex fuga aut accusantium quia."], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["excerpt", "Ipsam rerum ipsa voluptatum."], ["published", true], ["slug", "sit-maiores-19"], ["title", "Sit ab ea qui."], ["updated_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test21' OR lower(name) = 'rspec21' OR lower(name) = 'ruby21' OR lower(name) = '#rails21') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test21"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec21"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby21"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails21' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails21"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:15 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'harum-officiis-20' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 34], ["blog_id", 1], ["body", "Magni eos dolores voluptas. Aliquam aut magnam officia culpa. Esse voluptatum temporibus vitae. Nostrum quia aut quia officiis ut nobis. Quo error dolor. Quibusdam non nihil laborum modi aut cum aperiam."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Nihil deserunt eum quibusdam."], ["published", true], ["slug", "harum-officiis-20"], ["title", "Explicabo dolor quod ducimus."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test22' OR lower(name) = 'rspec22' OR lower(name) = 'ruby22' OR lower(name) = '#rails22') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test22' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test22"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec22"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby22"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails22' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails22"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-ut-21' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 35], ["blog_id", 1], ["body", "Aut aut nisi dolore non sunt in. Et adipisci quo illo quaerat sint accusantium. Voluptatem odio iure dolores quia consequatur architecto. Et alias enim quisquam. Unde nihil non perferendis aliquam et ad. Minima voluptas sit corrupti eum tenetur ratione natus."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Magnam enim."], ["published", true], ["slug", "aut-ut-21"], ["title", "Fugiat mollitia ut amet optio rerum adipisci."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test23' OR lower(name) = 'rspec23' OR lower(name) = 'ruby23' OR lower(name) = '#rails23') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test23"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec23"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby23"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails23' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails23"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'reprehenderit-molestias-22' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 36], ["blog_id", 1], ["body", "Laudantium ex eius odit eum illo sunt qui. Ratione minus praesentium inventore ut vel voluptatem assumenda. Nobis doloribus vel perspiciatis eius numquam. Eos quia animi qui ab optio id vero. Velit occaecati necessitatibus et tenetur. Ad aut ut aut velit. Reprehenderit deserunt ab labore."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Deleniti quia ut nihil."], ["published", false], ["slug", "reprehenderit-molestias-22"], ["title", "Nisi consequatur ipsum eos accusamus reprehenderit assumenda."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test24' OR lower(name) = 'rspec24' OR lower(name) = 'ruby24' OR lower(name) = '#rails24') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test24"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec24"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby24"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails24' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails24"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'vel-sed-23' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 37], ["blog_id", 1], ["body", "Et odio ab. Libero natus laborum ipsum ipsa voluptatibus. Qui doloribus quia. Qui omnis cupiditate. Asperiores aut error rerum quis rerum nihil. Eaque doloremque illum dolores sint labore distinctio."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Dolores facilis voluptatem pariatur optio inventore."], ["published", false], ["slug", "vel-sed-23"], ["title", "Quia voluptatibus eveniet optio ut eos."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test25' OR lower(name) = 'rspec25' OR lower(name) = 'ruby25' OR lower(name) = '#rails25') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test25"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec25"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby25"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails25' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails25"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'animi-cupiditate-24' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 38], ["blog_id", 1], ["body", "Perferendis asperiores quibusdam. Culpa odio dolorem quis nam vero. Exercitationem sint necessitatibus commodi. Aspernatur sapiente hic odio quia ex exercitationem et. Atque minima quia quia repellendus provident. Velit harum rerum consectetur eum. Qui qui dicta eos neque ipsa aspernatur."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Ullam hic quo voluptatem dolorem."], ["published", false], ["slug", "animi-cupiditate-24"], ["title", "Ratione assumenda natus ut qui eos et et."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test26' OR lower(name) = 'rspec26' OR lower(name) = 'ruby26' OR lower(name) = '#rails26') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby26"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails26' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails26"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f'  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.2ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.6ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 39], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["description", "Facilis nesciunt consequatur nisi iusto qui. Enim cupiditate aut. Omnis distinctio reprehenderit."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Molestiae temporibus et reprehenderit eaque dicta."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'sit-maiores-25' LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 40], ["blog_id", 1], ["body", "Error tenetur laudantium qui. Commodi minima fugit est ipsum laborum et. Quia vel beatae soluta sint est eius. Quia ut culpa provident repellendus. Dolores enim eos ut quod expedita aperiam. Provident eos velit ex fuga aut accusantium quia."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Ipsam rerum ipsa voluptatum."], ["published", true], ["slug", "sit-maiores-25"], ["title", "Sit ab ea qui."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test27' OR lower(name) = 'rspec27' OR lower(name) = 'ruby27' OR lower(name) = '#rails27') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test27"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec27"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby27"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails27' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails27"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'harum-officiis-26' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 41], ["blog_id", 1], ["body", "Magni eos dolores voluptas. Aliquam aut magnam officia culpa. Esse voluptatum temporibus vitae. Nostrum quia aut quia officiis ut nobis. Quo error dolor. Quibusdam non nihil laborum modi aut cum aperiam."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Nihil deserunt eum quibusdam."], ["published", true], ["slug", "harum-officiis-26"], ["title", "Explicabo dolor quod ducimus."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test28' OR lower(name) = 'rspec28' OR lower(name) = 'ruby28' OR lower(name) = '#rails28') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test28' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test28"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec28"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby28"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails28' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails28"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-ut-27' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 42], ["blog_id", 1], ["body", "Aut aut nisi dolore non sunt in. Et adipisci quo illo quaerat sint accusantium. Voluptatem odio iure dolores quia consequatur architecto. Et alias enim quisquam. Unde nihil non perferendis aliquam et ad. Minima voluptas sit corrupti eum tenetur ratione natus."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Magnam enim."], ["published", true], ["slug", "aut-ut-27"], ["title", "Fugiat mollitia ut amet optio rerum adipisci."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test29' OR lower(name) = 'rspec29' OR lower(name) = 'ruby29' OR lower(name) = '#rails29') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test29"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec29"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby29"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails29' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails29"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'reprehenderit-molestias-28' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 43], ["blog_id", 1], ["body", "Laudantium ex eius odit eum illo sunt qui. Ratione minus praesentium inventore ut vel voluptatem assumenda. Nobis doloribus vel perspiciatis eius numquam. Eos quia animi qui ab optio id vero. Velit occaecati necessitatibus et tenetur. Ad aut ut aut velit. Reprehenderit deserunt ab labore."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Deleniti quia ut nihil."], ["published", true], ["slug", "reprehenderit-molestias-28"], ["title", "Nisi consequatur ipsum eos accusamus reprehenderit assumenda."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test30' OR lower(name) = 'rspec30' OR lower(name) = 'ruby30' OR lower(name) = '#rails30') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test30"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec30"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby30"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails30' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails30"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'vel-sed-29' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 44], ["blog_id", 1], ["body", "Et odio ab. Libero natus laborum ipsum ipsa voluptatibus. Qui doloribus quia. Qui omnis cupiditate. Asperiores aut error rerum quis rerum nihil. Eaque doloremque illum dolores sint labore distinctio."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Dolores facilis voluptatem pariatur optio inventore."], ["published", true], ["slug", "vel-sed-29"], ["title", "Quia voluptatibus eveniet optio ut eos."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test31' OR lower(name) = 'rspec31' OR lower(name) = 'ruby31' OR lower(name) = '#rails31') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test31"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec31"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby31"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails31' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails31"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'animi-cupiditate-30' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 45], ["blog_id", 1], ["body", "Perferendis asperiores quibusdam. Culpa odio dolorem quis nam vero. Exercitationem sint necessitatibus commodi. Aspernatur sapiente hic odio quia ex exercitationem et. Atque minima quia quia repellendus provident. Velit harum rerum consectetur eum. Qui qui dicta eos neque ipsa aspernatur."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Ullam hic quo voluptatem dolorem."], ["published", true], ["slug", "animi-cupiditate-30"], ["title", "Ratione assumenda natus ut qui eos et et."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test32' OR lower(name) = 'rspec32' OR lower(name) = 'ruby32' OR lower(name) = '#rails32') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test32"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec32"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby32"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails32' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails32"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'est-quisquam-31' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 46], ["blog_id", 1], ["body", "Porro voluptas minus voluptatem ut omnis in. Consequuntur eum vel tempora minus quam. Fuga aut at non qui aut. Qui molestiae numquam est. Non corrupti molestiae eaque quis voluptatibus qui aut. Perferendis quo dicta vel non iste."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Quo est dolorem."], ["published", true], ["slug", "est-quisquam-31"], ["title", "Eos necessitatibus nesciunt explicabo."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test33' OR lower(name) = 'rspec33' OR lower(name) = 'ruby33' OR lower(name) = '#rails33') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test33"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec33"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby33"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails33' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails33"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'minima-delectus-32' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 47], ["blog_id", 1], ["body", "Eligendi pariatur doloribus aspernatur tempora nulla qui. Nihil sed eum beatae aut odio. Itaque autem necessitatibus reiciendis eum aliquid suscipit. Temporibus soluta libero. Numquam molestiae ipsa. Debitis eius incidunt."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Doloremque nihil porro."], ["published", true], ["slug", "minima-delectus-32"], ["title", "Odit reprehenderit nihil et et."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test34' OR lower(name) = 'rspec34' OR lower(name) = 'ruby34' OR lower(name) = '#rails34') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby34"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails34' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails34"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'deleniti-quod-33' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 48], ["blog_id", 1], ["body", "Aut eum reprehenderit consequatur blanditiis magnam beatae. Nisi facere id est asperiores atque pariatur. Itaque rerum aut voluptatem excepturi laboriosam et repudiandae. Dolores quaerat quam dolores voluptatem. Adipisci consequuntur ab minus est veniam ea."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Numquam autem corrupti voluptatem."], ["published", true], ["slug", "deleniti-quod-33"], ["title", "Temporibus ut animi sint perspiciatis illum assumenda vitae."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test35' OR lower(name) = 'rspec35' OR lower(name) = 'ruby35' OR lower(name) = '#rails35') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby35"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails35' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails35"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'repudiandae-quia-34' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 49], ["blog_id", 1], ["body", "Laudantium doloremque animi. Itaque qui tempore. Officiis aut mollitia facere aperiam est excepturi tempora. Quia eaque commodi est sed. Quis aut quia et qui error est."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Possimus."], ["published", true], ["slug", "repudiandae-quia-34"], ["title", "Ipsam quis nihil enim aut voluptate."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test36' OR lower(name) = 'rspec36' OR lower(name) = 'ruby36' OR lower(name) = '#rails36') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test36"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec36"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby36"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails36' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails36"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'omnis-labore-35' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 50], ["blog_id", 1], ["body", "Eius placeat voluptatem eaque aliquid voluptatibus minus vel. Aut mollitia odit officiis dicta fuga animi sit. Sed eum ut modi in est voluptas. Nam nulla ullam aspernatur et. Laudantium et nihil eum dolorem ipsa. Minima at harum non officiis quae reiciendis."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Eaque cumque explicabo suscipit."], ["published", false], ["slug", "omnis-labore-35"], ["title", "Dolor iure repudiandae quis facere."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test37' OR lower(name) = 'rspec37' OR lower(name) = 'ruby37' OR lower(name) = '#rails37') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test37"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec37"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby37"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails37' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails37"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 42 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 42], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 43 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 43], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 44 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 44], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 45 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 11 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 45], ["taggable_id", 11], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'placeat-beatae-36' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 51], ["blog_id", 1], ["body", "Accusamus inventore quam. Unde repudiandae facere ut perspiciatis accusamus. Itaque quae possimus in recusandae. Et cupiditate velit qui eveniet eum eum consectetur. Aut illum quia corporis vitae. Rerum incidunt ut sit voluptatem perspiciatis ad est. Dolores repellendus qui velit mollitia aut vel."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Et voluptatem deleniti."], ["published", false], ["slug", "placeat-beatae-36"], ["title", "In quod rem sed a praesentium est repellendus."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test38' OR lower(name) = 'rspec38' OR lower(name) = 'ruby38' OR lower(name) = '#rails38') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby38"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails38' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails38"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 46 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 46], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 47 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 47], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 48 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 48], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 49 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 12 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 49], ["taggable_id", 12], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_676bff8 ON posts_taggings_676bff8.taggable_id = almanac_posts.id AND posts_taggings_676bff8.taggable_type = 'Almanac::Post' AND posts_taggings_676bff8.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 52], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["description", "Nam et nobis quo pariatur non. Perferendis ea sapiente repudiandae labore reprehenderit nulla veritatis. Quas impedit mollitia molestiae enim beatae doloribus. Reiciendis eius labore pariatur ipsa."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Consequuntur laborum."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'eum-et-37' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 53], ["blog_id", 1], ["body", "Sit ad ut eius repudiandae iusto. Mollitia cumque necessitatibus porro nisi quibusdam. Quo ut aspernatur. Consequatur fugit accusamus. Libero placeat ipsa iusto. Delectus rerum sapiente odio quis nesciunt."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Blanditiis laudantium soluta aut ut."], ["published", true], ["slug", "eum-et-37"], ["title", "Amet reprehenderit facilis quia consequatur."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test39' OR lower(name) = 'rspec39' OR lower(name) = 'ruby39' OR lower(name) = '#rails39') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test39"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec39"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby39"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails39' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails39"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'in-praesentium-38' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 54], ["blog_id", 1], ["body", "Fuga qui quae. Qui impedit ratione velit et. Sunt ut in. Aut ea temporibus non mollitia. Et a et ut aperiam et recusandae. Distinctio optio assumenda voluptatem. Quae omnis minus animi."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Quisquam qui debitis soluta animi tenetur."], ["published", true], ["slug", "in-praesentium-38"], ["title", "Hic nihil quisquam sunt voluptatem ab quod."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test40' OR lower(name) = 'rspec40' OR lower(name) = 'ruby40' OR lower(name) = '#rails40') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test40' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test40"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec40"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby40"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails40' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails40"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptatem-cupiditate-39' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 55], ["blog_id", 1], ["body", "Voluptatibus sit eveniet. Quod consequatur nesciunt eveniet voluptas officia itaque. Modi perspiciatis in eos laudantium quo. Corrupti esse eum ad perspiciatis quod. Laudantium voluptatem eum. Est nihil nisi amet dignissimos sit adipisci quasi."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Cupiditate minus est."], ["published", true], ["slug", "voluptatem-cupiditate-39"], ["title", "Doloribus et fugiat est quia ullam quia voluptatem."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test41' OR lower(name) = 'rspec41' OR lower(name) = 'ruby41' OR lower(name) = '#rails41') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test41' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test41"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec41"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby41"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails41' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails41"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.2ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.2ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'quasi-sint-40' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 56], ["blog_id", 1], ["body", "Voluptatem et quos officia modi. Illum sed libero quod dolore aperiam quas aut. Consequatur veritatis laboriosam. Assumenda sint qui. Quae perferendis nihil itaque ratione. Ut voluptates sed architecto quo excepturi impedit."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Blanditiis veritatis dignissimos est odio maiores."], ["published", true], ["slug", "quasi-sint-40"], ["title", "Tempora quibusdam nulla sit quae necessitatibus."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test42' OR lower(name) = 'rspec42' OR lower(name) = 'ruby42' OR lower(name) = '#rails42') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec42' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby42"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails42' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails42"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'veniam-sunt-41' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 57], ["blog_id", 1], ["body", "Commodi ab qui sint iste tenetur vel cumque. Illum aliquam soluta explicabo vero qui magni. Non omnis minima aut. Voluptates nam mollitia ipsa. Provident quas asperiores recusandae aperiam ipsa non itaque."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Sed est amet at."], ["published", true], ["slug", "veniam-sunt-41"], ["title", "Quaerat beatae pariatur necessitatibus."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test43' OR lower(name) = 'rspec43' OR lower(name) = 'ruby43' OR lower(name) = '#rails43') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test43"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec43"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby43"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails43' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails43"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'laudantium-accusamus-42' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 58], ["blog_id", 1], ["body", "Nemo voluptatibus sint est non molestiae sequi. Ea error esse aut distinctio eaque ratione et. Repudiandae corrupti molestiae ducimus molestiae qui eos dolores. Est sapiente iure. Ut eos voluptatem cupiditate est."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Aspernatur ratione aliquid temporibus quo."], ["published", true], ["slug", "laudantium-accusamus-42"], ["title", "Perspiciatis fugit eos quas amet."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test44' OR lower(name) = 'rspec44' OR lower(name) = 'ruby44' OR lower(name) = '#rails44') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test44"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec44"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby44"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails44' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails44"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 22 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 22], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 23 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 23], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 24 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 24], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 25 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 6 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 25], ["taggable_id", 6], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'distinctio-est-43' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 59], ["blog_id", 1], ["body", "Consequatur ea consequatur nihil. Deserunt eos et velit rerum. Amet ipsa voluptatem. Laboriosam dolores libero blanditiis. Omnis id voluptates. Sint voluptas doloribus delectus sit dolorem voluptatum libero."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Eaque maxime quidem ut."], ["published", true], ["slug", "distinctio-est-43"], ["title", "Nulla dolorem mollitia."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test45' OR lower(name) = 'rspec45' OR lower(name) = 'ruby45' OR lower(name) = '#rails45') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test45"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec45"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby45' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby45"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails45' LIMIT 1 SQL (0.2ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails45"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 26 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 26], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 27 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 27], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 28 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 28], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 29 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 7 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 29], ["taggable_id", 7], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'placeat-odio-44' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 60], ["blog_id", 1], ["body", "Inventore perferendis eaque architecto et mollitia. Eveniet maxime est animi. Et quia repudiandae architecto qui corporis tempora eos. Enim laboriosam animi. Voluptas dolore rerum."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Ipsum consequuntur minus natus aperiam magnam."], ["published", true], ["slug", "placeat-odio-44"], ["title", "Fuga molestiae minima ab adipisci accusamus sit rerum."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test46' OR lower(name) = 'rspec46' OR lower(name) = 'ruby46' OR lower(name) = '#rails46') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby46"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails46' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails46"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 30 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 30], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 31 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 31], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 32 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 32], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 33 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 8 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 33], ["taggable_id", 8], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'laborum-quo-45' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 61], ["blog_id", 1], ["body", "Voluptates odit quis et. Omnis occaecati ratione molestias autem nulla enim. Consectetur et sit ex commodi aut. Id cumque est delectus. Vel et temporibus excepturi distinctio animi ducimus. Voluptatem nihil delectus quia. Expedita voluptas modi."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Omnis."], ["published", true], ["slug", "laborum-quo-45"], ["title", "Quod eveniet saepe architecto."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test47' OR lower(name) = 'rspec47' OR lower(name) = 'ruby47' OR lower(name) = '#rails47') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby47"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails47' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails47"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 34 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 34], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 35 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 35], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 36 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 36], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 37 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 9 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 37], ["taggable_id", 9], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-est-46' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 62], ["blog_id", 1], ["body", "Nam odit fugit in blanditiis voluptatem eos. Voluptas consequuntur totam. Repudiandae architecto laborum quia nobis repellat placeat. Laborum ea omnis natus dignissimos. Aut provident qui. Voluptas earum illum explicabo. Dolorem ea autem."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Ut."], ["published", true], ["slug", "et-est-46"], ["title", "Sed non modi."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test48' OR lower(name) = 'rspec48' OR lower(name) = 'ruby48' OR lower(name) = '#rails48') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test48' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby48"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails48' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails48"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.2ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 38 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 38], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 39 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 39], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 40 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 40], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 41 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 10 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 41], ["taggable_id", 10], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" ORDER BY written_at DESC, id DESC LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'totam-et-47' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 63], ["blog_id", 1], ["body", "Ad sint veritatis quidem debitis. Sunt vero in recusandae ut rerum facere. Hic expedita ea quos est ut. Veniam consequatur quisquam a animi. Ipsum deleniti quis sequi voluptatem ut ratione rem."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Dolorum velit quo."], ["published", true], ["slug", "totam-et-47"], ["title", "Est consequatur doloribus consectetur accusantium."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'similique-voluptate-48' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 64], ["blog_id", 1], ["body", "Possimus eveniet pariatur dolores. Quia ducimus sequi quae. Modi voluptates vitae suscipit quis quae vel. Quibusdam quae ratione. Quaerat accusantium earum at vero."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Dolores autem eligendi quo."], ["published", true], ["slug", "similique-voluptate-48"], ["title", "Nemo sed dolorum."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common')  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" JOIN taggings posts_taggings_a53e33f ON posts_taggings_a53e33f.taggable_id = almanac_posts.id AND posts_taggings_a53e33f.taggable_type = 'Almanac::Post' AND posts_taggings_a53e33f.tag_id = 1 WHERE "almanac_posts"."published" = 't'  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'pink@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "pink@example.net"], ["encrypted_password", "$2a$04$g6lYLwz9ZLKfDmbJ3gAteOoUqit1nc.EBY1xeQa76c1PQvG1pEEty"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 65], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["description", "Qui molestiae accusamus consectetur. Aperiam ipsam et inventore et. Qui optio rerum rem. Est et ut excepturi sed ab quo aut. At qui ut excepturi ex odit quis nostrum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolor iusto."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'repudiandae-iure-49' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 66], ["blog_id", 1], ["body", "Reiciendis debitis unde inventore minus et voluptas animi. Harum incidunt quo accusamus. Ex molestiae ut quas sint voluptatem voluptates. Ab enim ut error alias omnis amet officiis. Nihil dolores voluptas. Temporibus et est quis voluptatem voluptates ipsa. Corporis alias quis inventore corrupti enim et."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Molestiae totam."], ["published", true], ["slug", "repudiandae-iure-49"], ["title", "Deleniti eligendi molestias rerum iure optio dolores iusto."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test49' OR lower(name) = 'rspec49' OR lower(name) = 'ruby49' OR lower(name) = '#rails49') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby49' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby49"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails49' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails49"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'omnis-sunt-50' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 67], ["blog_id", 1], ["body", "Autem quaerat molestiae magni iure. Suscipit assumenda provident voluptas aut dolore sed et. Debitis omnis numquam et omnis. Dolorem ea ratione nisi. Distinctio quaerat deleniti iure eveniet. Sed id est exercitationem facilis totam."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Earum similique sit."], ["published", true], ["slug", "omnis-sunt-50"], ["title", "Soluta numquam qui."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test50' OR lower(name) = 'rspec50' OR lower(name) = 'ruby50' OR lower(name) = '#rails50') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test50' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby50"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails50' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails50"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'illum-veniam-51' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 68], ["blog_id", 1], ["body", "Laudantium aspernatur vel voluptatem et molestias aut. Rem mollitia aut laboriosam deserunt officia. Et nobis ut dolorum sed est perspiciatis ab. Voluptatum et necessitatibus inventore non. Id qui ea reprehenderit ab et. Incidunt dolores officia vitae perspiciatis amet."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Eveniet qui."], ["published", true], ["slug", "illum-veniam-51"], ["title", "Sapiente in doloremque debitis."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test51' OR lower(name) = 'rspec51' OR lower(name) = 'ruby51' OR lower(name) = '#rails51') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby51"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails51' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails51"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ea-reiciendis-52' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 69], ["blog_id", 1], ["body", "Aliquam qui aut explicabo labore harum ratione. Quis nobis quisquam commodi ut. Praesentium consequatur modi autem ex quibusdam optio. Esse sunt aut. Commodi corrupti molestias sit iusto. Error asperiores similique quis iste consequatur exercitationem atque. Repellendus rerum quis non."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Nobis harum quia eos explicabo rem."], ["published", true], ["slug", "ea-reiciendis-52"], ["title", "Ratione dolor natus necessitatibus quis dolorem quia."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test52' OR lower(name) = 'rspec52' OR lower(name) = 'ruby52' OR lower(name) = '#rails52') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test52"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec52"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby52"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails52' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails52"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'autem-qui-53' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 70], ["blog_id", 1], ["body", "Quisquam nobis esse ut et illo quis. Dolor doloribus culpa quidem rerum magni non impedit. Est porro autem rerum omnis. Temporibus autem id repudiandae placeat optio quisquam est. Non molestias odio. Molestias dolorem provident nesciunt."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Aut et cum officiis facere autem."], ["published", true], ["slug", "autem-qui-53"], ["title", "Ut vitae et eos qui."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test53' OR lower(name) = 'rspec53' OR lower(name) = 'ruby53' OR lower(name) = '#rails53') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby53"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails53' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails53"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Rendered /Users/vasinov/dev/almanac/app/views/almanac/posts/index.html.haml within layouts/almanac/application (0.6ms) Completed 200 OK in 22ms (Views: 16.7ms | ActiveRecord: 0.1ms) Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'karianne@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "karianne@example.com"], ["encrypted_password", "$2a$04$9r5/9xlFtyhsJXZSaJ4d4eYzgMkt6xckySM1vW1mhNX.Wdqb3TZd2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 71], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["description", "Omnis est harum voluptatum consequuntur laborum et. Expedita libero saepe ut vitae. Ullam sit omnis laboriosam dolor earum esse rerum. Temporibus laudantium earum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolorem sed quasi deserunt praesentium."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'officia-eos-54' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 72], ["blog_id", 1], ["body", "Eius quidem eos fugiat sunt. Possimus et ratione repellat maxime aliquam eos perspiciatis. Et voluptatem voluptas. Iste voluptatem cumque. Omnis ab dolores illo non."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Et reiciendis."], ["published", false], ["slug", "officia-eos-54"], ["title", "Eos repudiandae est."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test54' OR lower(name) = 'rspec54' OR lower(name) = 'ruby54' OR lower(name) = '#rails54') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby54"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails54' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails54"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.0ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dolor-unde-55' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 73], ["blog_id", 1], ["body", "Impedit saepe ipsam consequatur ut sint et eum. Nihil ullam totam voluptas autem et est. Eaque dolorem velit rerum voluptate. Nesciunt laudantium quidem aliquam. Eos assumenda voluptas dolorem quod harum voluptas nostrum."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Quia odit saepe dolores voluptatum."], ["published", false], ["slug", "dolor-unde-55"], ["title", "Facere quia necessitatibus nihil."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test55' OR lower(name) = 'rspec55' OR lower(name) = 'ruby55' OR lower(name) = '#rails55') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test55' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test55"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby55"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails55' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails55"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'molestiae-commodi-56' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 74], ["blog_id", 1], ["body", "Officia et consequatur accusantium inventore et. Sed doloribus cum qui culpa qui enim. Asperiores odio cupiditate repellat et vel velit dolore. Ut non ut illum. Porro sed commodi quidem. Aut adipisci atque culpa praesentium sit autem."], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["excerpt", "Non voluptatibus."], ["published", false], ["slug", "molestiae-commodi-56"], ["title", "Eius et enim ab repellat sit libero."], ["updated_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test56' OR lower(name) = 'rspec56' OR lower(name) = 'ruby56' OR lower(name) = '#rails56') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby56"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails56' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails56"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:16 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 5ms (Views: 1.4ms | ActiveRecord: 0.1ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."published" = 'f' ORDER BY written_at DESC, id DESC  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'bridie.hegmann@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "bridie.hegmann@example.net"], ["encrypted_password", "$2a$04$QoCvNe3qMbxALyCRfe6fI.iPjVgnTxgX43ADcEvIQEvsPLIx8h6U2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 75], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["description", "Est aut autem corporis voluptas. Voluptatem sit sint fuga non qui est aut. Ea excepturi ut. Necessitatibus sit vel ab tempora. Nostrum reprehenderit sed ab."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Eligendi adipisci iusto praesentium."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#index as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lindsey_kilback@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "lindsey_kilback@example.net"], ["encrypted_password", "$2a$04$U2gXIZ1wGChI8eKPttmONOYGRogFOUyuYTaT8ZA7PyS6roRiZ8cfO"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 76], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["description", "Qui molestiae accusamus consectetur. Aperiam ipsam et inventore et. Qui optio rerum rem. Est et ut excepturi sed ab quo aut. At qui ut excepturi ex odit quis nostrum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolor iusto."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'repudiandae-iure-57' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 77], ["blog_id", 1], ["body", "Reiciendis debitis unde inventore minus et voluptas animi. Harum incidunt quo accusamus. Ex molestiae ut quas sint voluptatem voluptates. Ab enim ut error alias omnis amet officiis. Nihil dolores voluptas. Temporibus et est quis voluptatem voluptates ipsa. Corporis alias quis inventore corrupti enim et."], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["excerpt", "Molestiae totam."], ["published", true], ["slug", "repudiandae-iure-57"], ["title", "Deleniti eligendi molestias rerum iure optio dolores iusto."], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test57' OR lower(name) = 'rspec57' OR lower(name) = 'ruby57' OR lower(name) = '#rails57') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby57"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails57' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails57"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"ut-dolor-58", "excerpt"=>"Ipsum nobis.", "body"=>"Earum similique sit ut provident. Incidunt quos voluptatem illo. Voluptatem mollitia ut nobis. Nihil quisquam et officiis. Cum error quam illo et doloremque ad. Distinctio quaerat deleniti iure eveniet.", "published"=>true, "tag_list"=>"common,test58,rspec58,ruby58,#rails58", "author_id"=>"78", "written_at"=>"2013-01-14"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'ut-dolor-58' AND "almanac_posts"."id" != 1) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 15ms (Views: 2.7ms | ActiveRecord: 0.6ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'dedric@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "dedric@example.com"], ["encrypted_password", "$2a$04$eG1.1pqJO2VYhjciPB7J9uRsyi5PbS1Z2KOqq4Durh6NNpNeNuhZa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 79], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["description", "Perferendis dolor dicta voluptatem numquam ab temporibus. Eos et delectus quas maiores quis provident sunt. Ut quos minima at. Provident est animi eum mollitia quis. Harum quibusdam eum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Eum culpa necessitatibus saepe quod."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.1ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'velit-et-59' LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 80], ["blog_id", 1], ["body", "Enim nemo iure reprehenderit. Atque libero voluptates labore sapiente eveniet officia. Nam atque neque est sit qui a iure. Optio nesciunt quo debitis totam. Eius non eum debitis voluptas. Non est veniam. Doloribus quia qui voluptatum dicta quis provident nam."], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["excerpt", "Reiciendis nulla."], ["published", true], ["slug", "velit-et-59"], ["title", "Error hic delectus repellendus sit iste tempore officiis."], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test59' OR lower(name) = 'rspec59' OR lower(name) = 'ruby59' OR lower(name) = '#rails59') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby59"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails59' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails59"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>nil, "slug"=>"eveniet-voluptates-60", "excerpt"=>"Aut sed.", "body"=>"Dolores omnis non similique vero ut veritatis voluptatum. Magnam ut laboriosam. Asperiores ex occaecati rerum exercitationem est non. Exercitationem fugiat et itaque autem quo facilis est. Praesentium recusandae occaecati et eos repudiandae in impedit. Laboriosam voluptatum facere sit. Dolorem sint amet placeat cupiditate repellat eos.", "published"=>true, "tag_list"=>"common,test60,rspec60,ruby60,#rails60", "author_id"=>"81", "written_at"=>"2013-01-14"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'eveniet-voluptates-60' AND "almanac_posts"."id" != 1) LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 13ms (Views: 1.7ms | ActiveRecord: 0.6ms) Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lindsey_kilback@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "lindsey_kilback@example.net"], ["encrypted_password", "$2a$04$LfZNRnlbA3PaaFr3wZ/QVOA9X5Rm/KXSuSbC1O7QsSMfEXyRGfpUe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 82], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["description", "Qui molestiae accusamus consectetur. Aperiam ipsam et inventore et. Qui optio rerum rem. Est et ut excepturi sed ab quo aut. At qui ut excepturi ex odit quis nostrum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolor iusto."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'repudiandae-iure-61' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 83], ["blog_id", 1], ["body", "Reiciendis debitis unde inventore minus et voluptas animi. Harum incidunt quo accusamus. Ex molestiae ut quas sint voluptatem voluptates. Ab enim ut error alias omnis amet officiis. Nihil dolores voluptas. Temporibus et est quis voluptatem voluptates ipsa. Corporis alias quis inventore corrupti enim et."], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["excerpt", "Molestiae totam."], ["published", true], ["slug", "repudiandae-iure-61"], ["title", "Deleniti eligendi molestias rerum iure optio dolores iusto."], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test61' OR lower(name) = 'rspec61' OR lower(name) = 'ruby61' OR lower(name) = '#rails61') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby61"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails61' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails61"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Soluta numquam qui.", "slug"=>"omnis-sunt-62", "excerpt"=>"Earum similique sit.", "body"=>"Autem quaerat molestiae magni iure. Suscipit assumenda provident voluptas aut dolore sed et. Debitis omnis numquam et omnis. Dolorem ea ratione nisi. Distinctio quaerat deleniti iure eveniet. Sed id est exercitationem facilis totam.", "published"=>true, "tag_list"=>"common,test62,rspec62,ruby62,#rails62", "author_id"=>"84", "written_at"=>"2013-01-14"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.1ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'omnis-sunt-62' AND "almanac_posts"."id" != 1) LIMIT 1  (0.2ms) UPDATE "almanac_posts" SET "title" = 'Soluta numquam qui.', "slug" = 'omnis-sunt-62', "excerpt" = 'Earum similique sit.', "body" = 'Autem quaerat molestiae magni iure. Suscipit assumenda provident voluptas aut dolore sed et. Debitis omnis numquam et omnis. Dolorem ea ratione nisi. Distinctio quaerat deleniti iure eveniet. Sed id est exercitationem facilis totam.', "author_id" = 84, "updated_at" = '2013-01-14 19:24:17.185426' WHERE "almanac_posts"."id" = 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test62' OR lower(name) = 'rspec62' OR lower(name) = 'ruby62' OR lower(name) = '#rails62') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test62' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec62"]] ActsAsTaggableOn::Tag Exists (0.4ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby62"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails62' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails62"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."tagger_type" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."context" = 'tags' AND "taggings"."tag_id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 87ms (ActiveRecord: 3.4ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jazmin@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "jazmin@example.net"], ["encrypted_password", "$2a$04$c65Qa8.mbnvp9kPLx/pP3uqmKygluHXkBqmo6lg00PocEq4hPJUF6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 85], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["description", "Ullam in architecto tenetur amet ut ea et. Ut quos minima at. Provident est animi eum mollitia quis. Harum quibusdam eum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Perferendis dolor dicta voluptatem numquam ab."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'velit-et-63' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 86], ["blog_id", 1], ["body", "Enim nemo iure reprehenderit. Atque libero voluptates labore sapiente eveniet officia. Nam atque neque est sit qui a iure. Optio nesciunt quo debitis totam. Eius non eum debitis voluptas. Non est veniam. Doloribus quia qui voluptatum dicta quis provident nam."], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["excerpt", "Reiciendis nulla."], ["published", true], ["slug", "velit-et-63"], ["title", "Error hic delectus repellendus sit iste tempore officiis."], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test63' OR lower(name) = 'rspec63' OR lower(name) = 'ruby63' OR lower(name) = '#rails63') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby63"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails63' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails63"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Testz", "slug"=>"eveniet-voluptates-64", "excerpt"=>"Aut sed.", "body"=>"Dolores omnis non similique vero ut veritatis voluptatum. Magnam ut laboriosam. Asperiores ex occaecati rerum exercitationem est non. Exercitationem fugiat et itaque autem quo facilis est. Praesentium recusandae occaecati et eos repudiandae in impedit. Laboriosam voluptatum facere sit. Dolorem sint amet placeat cupiditate repellat eos.", "published"=>true, "tag_list"=>"common,test64,rspec64,ruby64,#rails64", "author_id"=>"87", "written_at"=>"2013-01-14"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]] Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE ("almanac_posts"."slug" = 'eveniet-voluptates-64' AND "almanac_posts"."id" != 1) LIMIT 1  (0.1ms) UPDATE "almanac_posts" SET "title" = 'Testz', "slug" = 'eveniet-voluptates-64', "excerpt" = 'Aut sed.', "body" = 'Dolores omnis non similique vero ut veritatis voluptatum. Magnam ut laboriosam. Asperiores ex occaecati rerum exercitationem est non. Exercitationem fugiat et itaque autem quo facilis est. Praesentium recusandae occaecati et eos repudiandae in impedit. Laboriosam voluptatum facere sit. Dolorem sint amet placeat cupiditate repellat eos.', "author_id" = 87, "updated_at" = '2013-01-14 19:24:17.306244' WHERE "almanac_posts"."id" = 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test64' OR lower(name) = 'rspec64' OR lower(name) = 'ruby64' OR lower(name) = '#rails64') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test64' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test64"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec64"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby64"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails64' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails64"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."tagger_type" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."context" = 'tags' AND "taggings"."tag_id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (2, 3, 4, 5) ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."id" IN (2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 6], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 7], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 8], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 9], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 29ms (ActiveRecord: 2.6ms) Almanac::Post Load (0.0ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lindsey_kilback@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "lindsey_kilback@example.net"], ["encrypted_password", "$2a$04$/sW1noYzaPJrpuC45wN22Oc8mRO9c2ZOvV6JSZH4yCXUnUx0ikcbm"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 88], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["description", "Qui molestiae accusamus consectetur. Aperiam ipsam et inventore et. Qui optio rerum rem. Est et ut excepturi sed ab quo aut. At qui ut excepturi ex odit quis nostrum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolor iusto."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'repudiandae-iure-65' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 89], ["blog_id", 1], ["body", "Reiciendis debitis unde inventore minus et voluptas animi. Harum incidunt quo accusamus. Ex molestiae ut quas sint voluptatem voluptates. Ab enim ut error alias omnis amet officiis. Nihil dolores voluptas. Temporibus et est quis voluptatem voluptates ipsa. Corporis alias quis inventore corrupti enim et."], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["excerpt", "Molestiae totam."], ["published", true], ["slug", "repudiandae-iure-65"], ["title", "Deleniti eligendi molestias rerum iure optio dolores iusto."], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test65' OR lower(name) = 'rspec65' OR lower(name) = 'ruby65' OR lower(name) = '#rails65') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby65"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails65' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails65"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1 ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 19ms (ActiveRecord: 1.1ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'otho.schneider@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "otho.schneider@example.net"], ["encrypted_password", "$2a$04$pvHj6YtXOR9fx3dlgq2USOVkeoVba2GZsWNSz2yZceLEeLniUdv.S"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 90], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["description", "Debitis quasi voluptatum. Quae quam velit sit. Dolorem facere consequatur excepturi. Fugiat aperiam minus laudantium."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolores et aliquid ab enim eius accusantium."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dignissimos-voluptatem-66' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 91], ["blog_id", 1], ["body", "Consequuntur odio qui explicabo. Doloremque consequatur qui corporis. Et corporis consectetur beatae est a temporibus. Asperiores voluptas repellendus distinctio voluptates. Fuga qui natus repudiandae iure. Sint cupiditate recusandae facilis. Voluptas vel ad expedita est id temporibus."], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["excerpt", "Aliquid commodi."], ["published", true], ["slug", "dignissimos-voluptatem-66"], ["title", "Consequuntur sit et vel autem provident repudiandae quidem."], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test66' OR lower(name) = 'rspec66' OR lower(name) = 'ruby66' OR lower(name) = '#rails66') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test66"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec66"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby66"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails66' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails66"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  Processing by Almanac::PostsController#destroy as HTML Parameters: {"id"=>"1"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Post Load (0.1ms) SELECT "almanac_posts".* FROM "almanac_posts" WHERE "almanac_posts"."id" = ? ORDER BY written_at DESC, id DESC LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1 Almanac::Image Load (0.1ms) SELECT "almanac_images".* FROM "almanac_images" WHERE "almanac_images"."post_id" = 1 ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" IN (1, 2, 3, 4, 5) SQL (0.1ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 1]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 2]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 3]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 4]] SQL (0.0ms) DELETE FROM "taggings" WHERE "taggings"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "almanac_posts" WHERE "almanac_posts"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 10ms (ActiveRecord: 0.9ms)  (0.0ms) SELECT COUNT(*) FROM "almanac_posts"  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lindsey_kilback@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "lindsey_kilback@example.net"], ["encrypted_password", "$2a$04$/O9EVlvu8VGZGavwGwDI9ujTACPCMSlTUjw97ykH1I6ilyvf7LdcG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 92], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["description", "Qui molestiae accusamus consectetur. Aperiam ipsam et inventore et. Qui optio rerum rem. Est et ut excepturi sed ab quo aut. At qui ut excepturi ex odit quis nostrum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolor iusto."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"ratione-minima-67", "excerpt"=>"Sit fuga eos sequi dolores.", "body"=>"Molestiae totam fuga in. Reiciendis debitis unde inventore minus et voluptas animi. Harum incidunt quo accusamus. Ex molestiae ut quas sint voluptatem voluptates. Ab enim ut error alias omnis amet officiis.", "published"=>true, "tag_list"=>"common,test67,rspec67,ruby67,#rails67", "author_id"=>"93", "written_at"=>"2013-01-14", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ratione-minima-67' LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 12ms (Views: 2.5ms | ActiveRecord: 0.4ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lempi.buckridge@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "lempi.buckridge@example.org"], ["encrypted_password", "$2a$04$D7T.JNt2G5d3RvGPv2Hs2uxSb.GsoiZsz9Vo.LukK7OyjZZMpPysq"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 94], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["description", "Labore fugit occaecati saepe dolor voluptas ea. Fugiat qui veniam. Dolores et aliquid ab enim eius accusantium nostrum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Omnis delectus voluptas quidem dolor quas."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "almanac_posts"  Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>nil, "slug"=>"et-aut-68", "excerpt"=>"Porro qui qui pariatur culpa aut.", "body"=>"Dolorem nihil assumenda ut necessitatibus eligendi. Pariatur dolorem sint sit quae. Eum nulla et. Est delectus facilis sed omnis mollitia rerum reiciendis. Ut occaecati ea excepturi natus optio aperiam.", "published"=>true, "tag_list"=>"common,test68,rspec68,ruby68,#rails68", "author_id"=>"95", "written_at"=>"2013-01-14", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'et-aut-68' LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 1.5ms | ActiveRecord: 0.4ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_posts"  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lindsey_kilback@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "lindsey_kilback@example.net"], ["encrypted_password", "$2a$04$htRm9/rEwNBPGjB5GelIEuCSlu7s2kfazx5PRiAQ4CQ3j2ujbPu3m"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 96], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["description", "Qui molestiae accusamus consectetur. Aperiam ipsam et inventore et. Qui optio rerum rem. Est et ut excepturi sed ab quo aut. At qui ut excepturi ex odit quis nostrum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolor iusto."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Deleniti eligendi molestias rerum iure optio dolores iusto.", "slug"=>"repudiandae-iure-69", "excerpt"=>"Molestiae totam.", "body"=>"Reiciendis debitis unde inventore minus et voluptas animi. Harum incidunt quo accusamus. Ex molestiae ut quas sint voluptatem voluptates. Ab enim ut error alias omnis amet officiis. Nihil dolores voluptas. Temporibus et est quis voluptatem voluptates ipsa. Corporis alias quis inventore corrupti enim et.", "published"=>true, "tag_list"=>"common,test69,rspec69,ruby69,#rails69", "author_id"=>"97", "written_at"=>"2013-01-14", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'repudiandae-iure-69' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Reiciendis debitis unde inventore minus et voluptas animi. Harum incidunt quo accusamus. Ex molestiae ut quas sint voluptatem voluptates. Ab enim ut error alias omnis amet officiis. Nihil dolores voluptas. Temporibus et est quis voluptatem voluptates ipsa. Corporis alias quis inventore corrupti enim et."], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["excerpt", "Molestiae totam."], ["published", true], ["slug", "repudiandae-iure-69"], ["title", "Deleniti eligendi molestias rerum iure optio dolores iusto."], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test69' OR lower(name) = 'rspec69' OR lower(name) = 'ruby69' OR lower(name) = '#rails69') ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec69"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby69"]] ActsAsTaggableOn::Tag Exists (0.0ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails69' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails69"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 28ms (ActiveRecord: 2.4ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'otho.schneider@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "otho.schneider@example.net"], ["encrypted_password", "$2a$04$1u4IkldIzTxG3iKBJzTRYueUDUsRoFn4CMYtRkYdFU9GS.5m1hYWy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 98], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["description", "Debitis quasi voluptatum. Quae quam velit sit. Dolorem facere consequatur excepturi. Fugiat aperiam minus laudantium."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolores et aliquid ab enim eius accusantium."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_posts" Processing by Almanac::PostsController#create as HTML Parameters: {"post"=>{"title"=>"Consequuntur sit et vel autem provident repudiandae quidem.", "slug"=>"dignissimos-voluptatem-70", "excerpt"=>"Aliquid commodi.", "body"=>"Consequuntur odio qui explicabo. Doloremque consequatur qui corporis. Et corporis consectetur beatae est a temporibus. Asperiores voluptas repellendus distinctio voluptates. Fuga qui natus repudiandae iure. Sint cupiditate recusandae facilis. Voluptas vel ad expedita est id temporibus.", "published"=>true, "tag_list"=>"common,test70,rspec70,ruby70,#rails70", "author_id"=>"99", "written_at"=>"2013-01-14", "blog_id"=>"1"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'dignissimos-voluptatem-70' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["blog_id", 1], ["body", "Consequuntur odio qui explicabo. Doloremque consequatur qui corporis. Et corporis consectetur beatae est a temporibus. Asperiores voluptas repellendus distinctio voluptates. Fuga qui natus repudiandae iure. Sint cupiditate recusandae facilis. Voluptas vel ad expedita est id temporibus."], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["excerpt", "Aliquid commodi."], ["published", true], ["slug", "dignissimos-voluptatem-70"], ["title", "Consequuntur sit et vel autem provident repudiandae quidem."], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test70' OR lower(name) = 'rspec70' OR lower(name) = 'ruby70' OR lower(name) = '#rails70') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby70"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails70' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails70"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 28ms (ActiveRecord: 2.3ms)  (0.0ms) SELECT COUNT(*) FROM "almanac_posts"  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lindsey_kilback@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "lindsey_kilback@example.net"], ["encrypted_password", "$2a$04$nTgUIytAwnZHgwSEZ./JTu.1.Q0fpXwqN8CJBeE/M0RE2VeCtVBo2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 100], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["description", "Qui molestiae accusamus consectetur. Aperiam ipsam et inventore et. Qui optio rerum rem. Est et ut excepturi sed ab quo aut. At qui ut excepturi ex odit quis nostrum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolor iusto."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Completed 200 OK in 8ms (Views: 2.7ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'dulce@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "dulce@example.net"], ["encrypted_password", "$2a$04$DDKQXRY2sy.fEMcCRNcY..Td/G23otdeeNY/nlDbSHgGau9GjppOa"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 101], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["description", "Dolorum culpa omnis inventore id debitis autem autem. Quam cum dicta iure numquam. Molestias fuga quia maxime."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Reprehenderit perferendis soluta."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'fugiat-architecto-71' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 102], ["blog_id", 1], ["body", "Et qui id amet. Tempore voluptas veniam est non ullam dolore. Eum reprehenderit rerum voluptatibus harum sapiente. Error ipsum saepe voluptatem. Ut voluptate consequatur accusantium neque error et eveniet. Quia et eum quae fugit non omnis quo."], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["excerpt", "Possimus velit numquam odit."], ["published", true], ["slug", "fugiat-architecto-71"], ["title", "Perspiciatis ut debitis maiores minima minus quam."], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test71' OR lower(name) = 'rspec71' OR lower(name) = 'ruby71' OR lower(name) = '#rails71') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'common' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "common"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby71"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails71' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails71"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 2], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 3], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 4], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 5], ["taggable_id", 1], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'ea-distinctio-72' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 103], ["blog_id", 1], ["body", "Repellendus voluptas sunt id. Eos velit hic libero facilis. Eum culpa necessitatibus saepe quod sunt. Cumque eveniet ipsa iure sed. Eos et delectus quas maiores quis provident sunt. Ut quos minima at. Provident est animi eum mollitia quis."], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["excerpt", "Quos ex et eveniet porro nostrum."], ["published", true], ["slug", "ea-distinctio-72"], ["title", "Dolores sunt odio et."], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test72' OR lower(name) = 'rspec72' OR lower(name) = 'ruby72' OR lower(name) = '#rails72') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test72' LIMIT 1 SQL (0.1ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby72"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails72' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails72"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 6], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 7], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 8 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 8], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 9 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 2 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 9], ["taggable_id", 2], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'aut-et-73' LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 104], ["blog_id", 1], ["body", "Animi earum beatae. Enim nemo iure reprehenderit. Atque libero voluptates labore sapiente eveniet officia. Nam atque neque est sit qui a iure. Optio nesciunt quo debitis totam. Eius non eum debitis voluptas."], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["excerpt", "Voluptas vel ad expedita est."], ["published", true], ["slug", "aut-et-73"], ["title", "Harum quibusdam eum."], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test73' OR lower(name) = 'rspec73' OR lower(name) = 'ruby73' OR lower(name) = '#rails73') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby73"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails73' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails73"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 10 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 10], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 11 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 11], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 12 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 12], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 13 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 3 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 13], ["taggable_id", 3], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'minima-est-74' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 105], ["blog_id", 1], ["body", "Aut sed dolor similique. Dolore quia odio reprehenderit non. Corrupti voluptatem in. Exercitationem quia in itaque. Inventore ipsam id impedit dolorem. Aut unde temporibus ratione quia quidem labore ut. Rerum doloremque quidem."], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["excerpt", "Perferendis placeat sit libero neque rerum."], ["published", true], ["slug", "minima-est-74"], ["title", "Non est veniam."], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test74' OR lower(name) = 'rspec74' OR lower(name) = 'ruby74' OR lower(name) = '#rails74') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby74"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails74' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails74"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 14 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 14], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 15 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 15], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 16 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 16], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 17 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 4 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 17], ["taggable_id", 4], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" IS NULL AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)  (0.0ms) SAVEPOINT active_record_1 Almanac::Post Exists (0.1ms) SELECT 1 AS one FROM "almanac_posts" WHERE "almanac_posts"."slug" = 'voluptatem-beatae-75' LIMIT 1 SQL (0.2ms) INSERT INTO "almanac_posts" ("author_id", "blog_id", "body", "created_at", "excerpt", "published", "slug", "title", "updated_at", "written_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 106], ["blog_id", 1], ["body", "Maiores animi delectus consequuntur aspernatur qui exercitationem. Quisquam repellendus eveniet est. Doloremque odit tempore aliquid fugit reprehenderit molestiae et. Omnis sit quo eaque sed et ad voluptatem. Provident nemo quaerat. Sunt nostrum sit laboriosam facere et ab. Corrupti facere reprehenderit quia iste soluta."], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["excerpt", "Qui inventore vel."], ["published", true], ["slug", "voluptatem-beatae-75"], ["title", "Aliquam aut voluptatem quasi quos sit."], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["written_at", Mon, 14 Jan 2013]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common' OR lower(name) = 'test75' OR lower(name) = 'rspec75' OR lower(name) = 'ruby75' OR lower(name) = '#rails75') ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'test75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "test75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'rspec75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "rspec75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'ruby75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "ruby75"]] ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = '#rails75' LIMIT 1 SQL (0.0ms) INSERT INTO "tags" ("name") VALUES (?) [["name", "#rails75"]] ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Almanac::Post' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.2ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 1], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 18 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 18], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 19 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 19], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 20 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 20], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]] ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 21 AND "taggings"."taggable_type" = 'Almanac::Post' AND "taggings"."taggable_id" = 5 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1 SQL (0.1ms) INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type", "tagger_id", "tagger_type") VALUES (?, ?, ?, ?, ?, ?, ?) [["context", "tags"], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["tag_id", 21], ["taggable_id", 5], ["taggable_type", "Almanac::Post"], ["tagger_id", nil], ["tagger_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::PostsController#tag as HTML Parameters: {"tag_name"=>"common"} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (lower(name) = 'common') Completed 200 OK in 7ms (Views: 1.5ms | ActiveRecord: 0.2ms) Almanac::Post Load (0.2ms) SELECT "almanac_posts".* FROM "almanac_posts" JOIN taggings posts_taggings_c62c4e4 ON posts_taggings_c62c4e4.taggable_id = almanac_posts.id AND posts_taggings_c62c4e4.taggable_type = 'Almanac::Post' AND posts_taggings_c62c4e4.tag_id = 1 WHERE "almanac_posts"."published" = 't' ORDER BY written_at DESC, id DESC LIMIT 10 OFFSET 0  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 107], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["description", "Exercitationem repudiandae vel aut hic. Natus pariatur ex quam neque cum corrupti. Occaecati nemo eum maiores sit cumque est tempore."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Minima sint delectus eos."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 109], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["description", "Odio enim ducimus recusandae exercitationem tenetur ut. Ex est earum corporis esse dolor itaque sunt. Et harum modi."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Fugiat qui suscipit quam rem culpa ut."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lindsey_kilback@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.5ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "lindsey_kilback@example.net"], ["encrypted_password", "$2a$04$KKNgv2Fyx6Z3NrW6Y0lZm.qayehB8T/O/TFiukrIDRPgAhHrrjkKe"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 111], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["description", "Qui molestiae accusamus consectetur. Aperiam ipsam et inventore et. Qui optio rerum rem. Est et ut excepturi sed ab quo aut. At qui ut excepturi ex odit quis nostrum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolor iusto."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Deleniti eligendi molestias rerum iure optio dolores iusto. Sit veritatis veniam eum ducimus amet. Consequuntur quod fugiat praesentium culpa. Et perspiciatis quasi incidunt distinctio ipsa illo. Accusamus magni itaque ratione.", "author_id"=>"112"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 9ms (Views: 3.5ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'willow@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "willow@example.com"], ["encrypted_password", "$2a$04$E82FcX4W6hCrH2lVfPvcBOzqjcWrXODdK28RZcDW9s6i1QAUFCdjW"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.3ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 113], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["description", "Et qui id amet. Tempore voluptas veniam est non ullam dolore. Eum reprehenderit rerum voluptatibus harum sapiente. Error ipsum saepe voluptatem."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Possimus velit numquam odit quae."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>nil, "description"=>"Reprehenderit pariatur vitae. Cum et magnam iusto esse neque soluta. Dolores sunt odio et. Dolores repellendus laudantium voluptatem illum.", "author_id"=>"114"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.2ms) Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lindsey_kilback@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "lindsey_kilback@example.net"], ["encrypted_password", "$2a$04$KIJqOegfCr0LTTy2mBrmKOBxLe2X4TWuCOz3bBfHS86IFg76qS1oS"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 115], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["description", "Qui molestiae accusamus consectetur. Aperiam ipsam et inventore et. Qui optio rerum rem. Est et ut excepturi sed ab quo aut. At qui ut excepturi ex odit quis nostrum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolor iusto."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Deleniti eligendi molestias rerum iure optio dolores.", "description"=>"Molestiae totam fuga in. Reiciendis debitis unde inventore minus et voluptas animi. Harum incidunt quo accusamus.", "author_id"=>"116"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Deleniti eligendi molestias rerum iure optio dolores.', "description" = 'Molestiae totam fuga in. Reiciendis debitis unde inventore minus et voluptas animi. Harum incidunt quo accusamus.', "author_id" = 116, "updated_at" = '2013-01-14 19:24:17.860322' WHERE "almanac_blogs"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 5ms (ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'domingo@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "domingo@example.net"], ["encrypted_password", "$2a$04$4igthX19ORZCWxU8URvV2OoBdQ7S.9b30dIHpkNyUuz1xRj0C22F2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.4ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 117], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["description", "Aut quos quia. Dignissimos hic asperiores voluptate. Et in tenetur expedita ut fugiat earum. Ratione non est quo quia quia. Omnis dolor et aut facere rem cumque."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Iusto dicta omnis odio aut corrupti esse."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#update as HTML Parameters: {"id"=>"1", "blog"=>{"title"=>"Testz", "description"=>"Reprehenderit ducimus quam velit. Sint accusamus modi et amet tempora rem maxime. Omnis ratione et autem soluta vel quis.", "author_id"=>"118"}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) UPDATE "almanac_blogs" SET "title" = 'Testz', "description" = 'Reprehenderit ducimus quam velit. Sint accusamus modi et amet tempora rem maxime. Omnis ratione et autem soluta vel quis.', "author_id" = 118, "updated_at" = '2013-01-14 19:24:17.877253' WHERE "almanac_blogs"."id" = 1  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 5ms (ActiveRecord: 0.3ms) Almanac::Blog Load (0.0ms) SELECT "almanac_blogs".* FROM "almanac_blogs" WHERE "almanac_blogs"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lindsey_kilback@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "lindsey_kilback@example.net"], ["encrypted_password", "$2a$04$DRf1wbJcg8JLAaLfSrvzmegdXYjBZNf922o5il2R6fo/6TL0JmvA2"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Ipsa sit voluptas consectetur enim velit. Eos facilis optio explicabo tenetur amet. Similique laborum consectetur qui modi sunt.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 8ms (Views: 2.7ms | ActiveRecord: 0.3ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'armani.kutch@example.org' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.7ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "armani.kutch@example.org"], ["encrypted_password", "$2a$04$eDOiPVXbl1nwilfb6hIZheHQpZRQQMDA.uojTDZrsvwoI11MQYbnG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"  Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>nil, "description"=>"Eaque repellat quo autem. Consequatur eos est. Accusantium voluptas qui quis vitae laboriosam ut veritatis.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 1.4ms | ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"   (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lindsey_kilback@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "lindsey_kilback@example.net"], ["encrypted_password", "$2a$04$OCMPSH38V9LXBWCyilUF5uY6INjg/75qeaeXe/GEVhzHi5Zt63Ehu"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Dolor iusto.", "description"=>"Qui molestiae accusamus consectetur. Aperiam ipsam et inventore et. Qui optio rerum rem. Est et ut excepturi sed ab quo aut. At qui ut excepturi ex odit quis nostrum.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["description", "Qui molestiae accusamus consectetur. Aperiam ipsam et inventore et. Qui optio rerum rem. Est et ut excepturi sed ab quo aut. At qui ut excepturi ex odit quis nostrum."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Dolor iusto."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 6ms (ActiveRecord: 0.8ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'dulce@example.net' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.4ms) INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "dulce@example.net"], ["encrypted_password", "$2a$04$JAbwJ5j.4Pnc5q5EDe2WXOIgBhLiuVrtP0u/3KNtXDoW5JhGJ1UK6"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "almanac_blogs"  Processing by Almanac::BlogsController#create as HTML Parameters: {"blog"=>{"title"=>"Reprehenderit perferendis soluta.", "description"=>"Dolorum culpa omnis inventore id debitis autem autem. Quam cum dicta iure numquam. Molestias fuga quia maxime.", "author_id"=>nil}} Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1  (0.0ms) SAVEPOINT active_record_1 Almanac::Blog Load (0.1ms) SELECT "almanac_blogs".* FROM "almanac_blogs" LIMIT 1 SQL (0.5ms) INSERT INTO "almanac_blogs" ("author_id", "background_blur", "background_tile", "background_uid", "created_at", "description", "footer", "google_analytics", "logo_uid", "rakismet_key", "rakismet_url", "title", "twitter", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_id", 1], ["background_blur", 0], ["background_tile", true], ["background_uid", nil], ["created_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00], ["description", "Dolorum culpa omnis inventore id debitis autem autem. Quam cum dicta iure numquam. Molestias fuga quia maxime."], ["footer", nil], ["google_analytics", nil], ["logo_uid", nil], ["rakismet_key", nil], ["rakismet_url", nil], ["title", "Reprehenderit perferendis soluta."], ["twitter", nil], ["updated_at", Mon, 14 Jan 2013 19:24:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/almanac/ Completed 302 Found in 6ms (ActiveRecord: 0.8ms)  (0.0ms) SELECT COUNT(*) FROM "almanac_blogs"   (0.4ms) rollback transaction